일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- jupyter lab
- Houdini
- 유니티
- c#
- c# 윈폼
- Unity
- 포인터
- vim
- dart 언어
- gitlab
- 플러터
- C언어 포인터
- C++
- Python
- HTML
- C# delegate
- Flutter
- github
- 다트 언어
- 구조체
- Data Structure
- git
- jupyter
- c언어
- c# 추상 클래스
- c# winform
- Algorithm
- 도커
- 깃
- docker
Archives
- Today
- Total
목록c언어 링크드 리스트 (1)
nomad-programmer
[Programming/Algorithm] 간단한 양방향 List 자료구조의 구현
다음은 List 사용의 main.c 파일의 내용이다. #include #include #include "List.h" /* clinet */ void* AllocData(double data){ double* p = (double*)malloc(sizeof(double)); *p = data; return p; } void FreeData(void* p){ free(p); } void PrintPrevious(LIST* lst){ printf("prev: "); for(ResetTailPos(lst); HasPrevious(lst); Previous(lst)){ printf("%lf ", *(double*)GetItem(lst)); } puts(""); } void PrintNext(LIST* lst){..
Programming/Algorithm
2021. 1. 24. 03:30