数据结构二叉树操作验证实验报告_第1页
数据结构二叉树操作验证实验报告_第2页
数据结构二叉树操作验证实验报告_第3页
数据结构二叉树操作验证实验报告_第4页
数据结构二叉树操作验证实验报告_第5页
已阅读5页,还剩5页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

班级:计算机学号:姓名:成绩:_________实验七二叉树操作验证实验目的⑴掌握二叉树的逻辑结构;⑵掌握二叉树的二叉链表存储结构;⑶掌握基于二叉链表存储的二叉树的遍历操作的实现。。实验内容⑴建立一棵含有n个结点的二叉树,采用二叉链表存储;⑵前序(或中序、后序)遍历该二叉树。设计与编码#include<iostream>usingnamespacestd;template<classT>classBTree;template<classT>//***********************二叉树结点类定义**********************classBTreeNode{friendclassBTree<T>;Tdata;BTreeNode<T>*lchild,*rchild;public:BTreeNode():lchild(NULL),rchild(NULL){}BTreeNode(Td,BTreeNode<T>*l=NULL,BTreeNode<T>*r=NULL):data(d),lchild(l),rchild(r){}Tgetdata(){returndata;}BTreeNode<T>*getleft(){returnlchild;}BTreeNode<T>*getright(){returnrchild;}};//***********************END********************************//***********************二叉树模板类定义*******************template<classT>classBTree{public:BTree(Ta[],intn);voidpreorder(voidvisit(BTreeNode<T>*p));staticvoidpreorder(BTreeNode<T>*p,voidvisit(BTreeNode<T>*p));//递归前序遍历voidinorder(voidvisit(BTreeNode<T>*p));staticvoidinorder(BTreeNode<T>*p,voidvisit(BTreeNode<T>*p));//递归中序遍历voidpostorder(voidvisit(BTreeNode<T>*p));staticvoidpostorder(BTreeNode<T>*p,voidvisit(BTreeNode<T>*p));//递归后序遍历staticvoidfun(BTreeNode<T>*p){cout<<p->data;}//访问结点protected:BTreeNode<T>*root;private:T*a;intn;BTreeNode<T>*build0(inti);};//***********************建树*******************************template<classT>BTreeNode<T>*BTree<T>::build0(inti)//递归建树{BTreeNode<T>*p;intl,r;if((i<=n)&&(a[i-1]!='')){p=newBTreeNode<T>;p->data=a[i-1];l=2*i;r=2*i+1;p->lchild=build0(l);p->rchild=build0(r);return(p);}elsereturn(NULL);}template<classT>BTree<T>::BTree(Ta[],intn){this->a=a;this->n=n;root=build0(1);cout<<"递归建树成功!"<<endl;};//***********************END********************************//***********************遍历*******************************template<classT>voidBTree<T>::preorder(voidvisit(BTreeNode<T>*p))//递归前序遍历{preorder(root,visit);cout<<endl;}template<classT>voidBTree<T>::preorder(BTreeNode<T>*p,voidvisit(BTreeNode<T>*p)){if(p!=NULL){visit(p);preorder(p->lchild,visit);preorder(p->rchild,visit);}}template<classT>voidBTree<T>::inorder(voidvisit(BTreeNode<T>*p)){inorder(root,visit);cout<<endl;}template<classT>voidBTree<T>::inorder(BTreeNode<T>*p,voidvisit(BTreeNode<T>*p)){if(p!=NULL){inorder(p->lchild,visit);visit(p);inorder(p->rchild,visit);}}template<classT>voidBTree<T>::postorder(voidvisit(BTreeNode<T>*p))//递归后序遍历{postorder(root,visit);cout<<endl;}template<classT>voidBTree<T>::postorder(BTreeNode<T>*p,voidvisit(BTreeNode<T>*p)){if(p!=NULL){postorder(p->lchild,visit);postorder(p->rchild,visit);visit(p);}}voidmain(){char*str="abcde";cout<<str<<endl;BTree<char>s(str,6);cout<<endl;cout<<str<<endl;cout<<endl;while(1){cout<<"────────────请选择操作─────────────"<<endl;cout<<"递归的先序遍历:1+回车"<<endl;cout<<"递归的中序遍历:2+回车"<<endl;cout<<"递归的后序遍历:3+回车"<<endl;cout<<"──────────────────────────────"<<endl;cout<<"请选择:";intchoice;cin>>choice;cout<<endl;switch(choice){case1:{if(str){cout<<"递归先序遍历二叉树:";s.preorder(s.fun);cout<<endl;}elsecout<<"二叉树为空!"<<endl;break;}case2:{if(str){cout<<"递归中序遍历二叉树:";s.inorder(s.fun);cout<<endl;}elsecout<<"二叉树为空!"<<endl;break;}case3:{if(str){cout<<"递归后序遍历二叉树:";s.postorder(s.fun);cout<<endl;}elsecout<<"二叉

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

最新文档

评论

0/150

提交评论