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