일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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# 추상 클래스
- Houdini
- jupyter
- Flutter
- gitlab
- 구조체
- jupyter lab
- 플러터
- c# 윈폼
- C언어 포인터
- 깃
- Data Structure
- Python
- c# winform
- git
- docker
- dart 언어
- HTML
- 포인터
- 도커
- vim
- c#
- 다트 언어
- Unity
- C++
- c언어
- 유니티
- github
- C# delegate
- Algorithm
Archives
- Today
- Total
목록자료구조 (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