구현소스 LinkedListQueue.h #ifndef LINKEDLISTQUEUE_H #define LINKEDLISTQUEUE #include #include #include typedef struct tagNode{ char* Data; struct tagNode* NextNode; }Node; typedef struct tagLinkedQueue{ Node* Front; // 전단을 가리키는 포인터 Node* Rear; // 후단을 가리키는 포인터 int Count; // Node의 개수를 가짐 } LinkedQueue; void LQ_CreateQueue(LinkedQueue** Queue); // Queue 생성 void LQ_DestroyQueue(LinkedQueue* Queue); // ..
Programming/뇌를 자극하는 알고리즘
2010. 10. 5. 15:07
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Win32 API
- Kinect Game Project
- Tree
- Queue
- 뇌를 자극하는 알고리즘
- Pixel 색상값으로 구현한 간단한 충돌
- Ice Climber
- 윈도우즈 API 정복
- Farseer Physics
- MFC 예제
- WM_CONTEXTMENU
- Game project
- 열혈강의C
- Tales of the Float Land
- PackMan
- Linked list
- quick sort
- IntersectRect
- 그림 맞추기 게임
- WM_TIMER
- Digits Folding
- WinAPI
- SetTimer
- Kinect Programming
- PtInRect
- graph
- Data Structures in C
- Hash table
- Stack
- 2D Game Project
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함