1. 首页
  2. 编程语言
  3. C++ 
  4. 二叉排序树的建立和中根遍历

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

上传者: 2020-10-04 13:53:05上传 CPP文件 2.08KB 热度 14次
#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);
下载地址
用户评论