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 · 155 阅读 · 0 评论 -
二叉堆
[code="c"]#include #include /** * 经常使用 heap 实现 优先级队列 */#define MAX_SIZE 100#define True 1#define False 0typedef short Boolean;typedef struct node* pNode;struct node{ int ...原创 2011-04-04 23:20:53 · 150 阅读 · 0 评论
分享