Data Structure
iteye_7838
这个作者很懒,什么都没留下…
展开
-
BST 二叉查找树
自己实现的 二叉查找树,受益于人,回馈于人 [code="c"] #include #include typedef struct node* pNode; struct node { int data; pNode left; pNode right; pNode parent; }; pNode root; void traverse(pNode...原创 2011-04-04 20:44:43 · 123 阅读 · 0 评论 -
二叉堆
[code="c"] #include #include /** * 经常使用 heap 实现 优先级队列 */ #define MAX_SIZE 100 #define True 1 #define False 0 typedef short Boolean; typedef struct node* pNode; struct node{ int ...原创 2011-04-04 23:20:53 · 130 阅读 · 0 评论