二叉排序树的建立和中根遍历 时间:2012-01-05 06:33:39 【文件属性】: 文件名称:二叉排序树的建立和中根遍历 文件大小:2KB 文件格式:CPP 更新时间:2012-01-05 06:33:39 二叉排序树 #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); 立即下载