일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- c언어
- jupyter
- c# winform
- Python
- 깃
- vim
- HTML
- 구조체
- gitlab
- 도커
- dart 언어
- 다트 언어
- jupyter lab
- docker
- C언어 포인터
- 플러터
- 포인터
- Flutter
- Houdini
- c# 윈폼
- Data Structure
- git
- 유니티
- C++
- c# 추상 클래스
- Unity
- github
- C# delegate
- Algorithm
- c#
Archives
- Today
- Total
목록stack (1)
nomad-programmer
[C] 동적 할당으로 간단히 구현해본 stack
#include #include #include #include void SetData(unsigned short** dst, unsigned short** src, const short size) { for (int i = 0; i < size; i++) { *(*(dst)+i) = *(*(src)+i); } } void Push(unsigned short** ptr, short* curt, const short value) { (*curt)++; unsigned short* new_data = (unsigned short*)malloc(((*curt) + 1) * sizeof(short)); SetData(&new_data, ptr, *curt); *(new_data + (*curt)) = value..
Programming/C
2020. 6. 13. 16:02