코드 CDDL.h #ifndef CDLL_H #define CDLL_H #include #include typedef int ElementType; typedef struct tagNode{ ElementType Data; struct tagNode *PrevNode; struct tagNode *NextNode; } Node; Node* CDLL_CreateNode(ElementType NewData); // 노드 생성 void CDLL_DestroyNode(Node* Node); // 노드 파괴 void CDLL_AppendNode(Node** Head, Node* NewNode); // 노드를 추가하는 함수 - 링크드 리스트 젤 끝(tail)에 추가 void CDLL_InsertAfter(Node*..
코드 DLL.h #ifndef DLL_H #define DLL_H #include #include typedef int ElementType; typedef struct tagNode{ ElementType Data; struct tagNode *PrevNode; struct tagNode *NextNode; } Node; Node* DLL_CreateNode(ElementType NewData); // 노드 생성 void DLL_DestroyNode(Node* Node); // 노드 파괴 void DLL_AppendNode(Node** Head, Node* NewNode); // 노드를 추가하는 함수 - 링크드 리스트 젤 끝(tail)에 추가 void DLL_InsertAfter(Node* Curren..
- Total
- Today
- Yesterday
- Kinect Programming
- Hash table
- Digits Folding
- WM_TIMER
- Stack
- Win32 API
- graph
- WM_CONTEXTMENU
- Kinect Game Project
- WinAPI
- PackMan
- Tree
- Ice Climber
- Game project
- 그림 맞추기 게임
- SetTimer
- Data Structures in C
- 2D Game Project
- MFC 예제
- Pixel 색상값으로 구현한 간단한 충돌
- Tales of the Float Land
- PtInRect
- Queue
- 윈도우즈 API 정복
- 열혈강의C
- IntersectRect
- Farseer Physics
- Linked list
- quick sort
- 뇌를 자극하는 알고리즘
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |