摘要: #include#include#includetypedef struct node{ int data; struct node *lchild,*rchild,*next;}hufnode;typedef hufnode *linkhuf;linkhuf insert(linkhu... 阅读全文
posted @ 2015-02-06 19:25 Thereisnospon 阅读(179) 评论(0) 推荐(0) 编辑
摘要: #include#includetypedef int type;typedef struct node{ type key; struct node *lchild,*rchild;}bsnode;typedef bsnode *bstree;//非递归查找x的位置,通过二级指针返回其... 阅读全文
posted @ 2015-02-06 17:49 Thereisnospon 阅读(119) 评论(0) 推荐(0) 编辑