摘要:
#include#include#includetypedef struct node{ int data; struct node *lchild,*rchild,*next;}hufnode;typedef hufnode *linkhuf;linkhuf insert(linkhu... 阅读全文
摘要:
#include#includetypedef int type;typedef struct node{ type key; struct node *lchild,*rchild;}bsnode;typedef bsnode *bstree;//非递归查找x的位置,通过二级指针返回其... 阅读全文