二叉排序树的建立和中根遍历

上传:findya 浏览: 13 推荐: 0 文件:CPP 大小:2.08KB 上传时间:2020-10-04 13:53:05 版权申诉
#include #include typedef int ElemType; typedef struct node { ElemType data; struct node *lch,*rch; }Snode; Snode *creat_bt0(); Snode *creat_bt1(); Snode *insert0(Snode *t,Snode *s); Snode *insert1(Snode *t,Snode *s); void inorder(Snode *p);
上传资源
用户评论