구현소스 LinkedList.h #ifndef LINKEDLIST_H #define LINKEDLIST_H #include #include typedef int Element; typedef struct tagNode{ struct tagNode *NextNode; Element Data; } Node; Node* SLL_CreateNode(Element NewData); // 노드 생성 void SLL_DestroyNode(Node* Node); // 노드 파괴 void SLL_AppendNode(Node** Head, Node* NewNode); // 노드를 추가하는 함수 - 링크드 리스트 젤 끝(tail)에 추가 void SLL_RemoveNode(Node** Head, Node* Remove);/..
Programming/뇌를 자극하는 알고리즘
2010. 10. 20. 23:40
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 그림 맞추기 게임
- PtInRect
- PackMan
- IntersectRect
- 윈도우즈 API 정복
- WM_TIMER
- 2D Game Project
- WinAPI
- SetTimer
- Kinect Game Project
- Data Structures in C
- Queue
- Linked list
- 열혈강의C
- quick sort
- 뇌를 자극하는 알고리즘
- Tales of the Float Land
- Ice Climber
- WM_CONTEXTMENU
- Pixel 색상값으로 구현한 간단한 충돌
- Game project
- Farseer Physics
- Tree
- Hash table
- MFC 예제
- Kinect Programming
- graph
- Digits Folding
- Win32 API
- Stack
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함