구현 소스 LCRSTree.h #ifndef LCRSTREE_H #define LCRSTREE_H #include #include typedef char Element; // Left child Right Sibling Tree Struct 선언 typedef struct tagLCRSNode{ struct tagLCRSNode* LeftChild; struct tagLCRSNode* RightSibling; Element Data; } LCRSNode; LCRSNode* LCRS_CreateNode(Element NewData); void LCRS_DestroyNode(LCRSNode* Node); void LCRS_DestroyTree(LCRSNode* Root); // DestroyTree 함수는 ..
Programming/뇌를 자극하는 알고리즘
2010. 10. 7. 23:34
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Farseer Physics
- Queue
- Tales of the Float Land
- Hash table
- 윈도우즈 API 정복
- 열혈강의C
- graph
- IntersectRect
- Kinect Programming
- Tree
- quick sort
- Pixel 색상값으로 구현한 간단한 충돌
- Stack
- Game project
- Linked list
- 뇌를 자극하는 알고리즘
- 2D Game Project
- SetTimer
- MFC 예제
- Ice Climber
- 그림 맞추기 게임
- Data Structures in C
- Digits Folding
- Kinect Game Project
- WinAPI
- WM_TIMER
- Win32 API
- PtInRect
- PackMan
- WM_CONTEXTMENU
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함