c++使用二叉树进行查找 插入 删除

时间:2016-08-03 14:42:07
【文件属性】:

文件名称:c++使用二叉树进行查找 插入 删除

文件大小:6KB

文件格式:TXT

更新时间:2016-08-03 14:42:07

二叉树 查找

c++使用二叉树进行查找 插入 删除 #include "stdafx.h" #include using namespace std; int num_visit=0;//记录输出元素个数 struct tnode{ public: int data; public: tnode *left,*right; tnode(){} tnode(int item,tnode *p,tnode *q):data(item),left(p),right(q){} }; typedef tnode *Tnode; //生明函数 int menu();//菜单 void main_menu(Tnode root,int n);//主菜单 Tnode createTree();//创建二叉树 int visit(int t);//访问节点 void showTree(Tnode , int );//遍历 int level_showTree(Tnode root);//先序便遍历二叉树


网友评论