2022自考数据结构上机题目3二叉树_第1页
2022自考数据结构上机题目3二叉树_第2页
2022自考数据结构上机题目3二叉树_第3页
2022自考数据结构上机题目3二叉树_第4页
2022自考数据结构上机题目3二叉树_第5页
已阅读5页,还剩10页未读 继续免费阅读

付费下载

下载本文档

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

文档简介

1、/*二叉树*/#include #include #include #define size 100typedef char DataType;typedef struct node DataType data; struct node *lchild, *rchild;/左右孩子指针BinTNode;/结点类型typedef BinTNode *BinTree;/建立二叉树void CreateBinTree(BinTree *T) char ch; if(ch=getchar()= ) printf(建立空节点n); *T=NULL; else *T=(BinTNode *)malloc(

2、sizeof(BinTNode); (*T)-data=ch; printf(建立节点 %c n, ch); CreateBinTree(&(*T)-lchild); CreateBinTree(&(*T)-rchild); /在序列中查找节点位置int Search(char array, char c) int i=0; while(arrayi!=c & arrayi) i+; if(arrayi=c) return i; else return -1; /基于先序和中序序列旳构造算法void CreateBinTree2(BinTree *T, char pre, char ino,

3、int ps, int is, int n) int k; if(n=0) *T=NULL; else k=Search(ino, preps); if(k=-1) puts(Errorn); else *T=(BinTNode *)malloc(sizeof(BinTNode); (*T)-data=preps; if(k=is) (*T)-lchild=NULL; else CreateBinTree2(&(*T)-lchild, pre, ino, ps+1, is, k-is); if(k=is+n-1) (*T)-rchild=NULL; else CreateBinTree2(&(

4、*T)-rchild, pre, ino, ps+1+(k-is), k+1, n-(k-is)-1); /基于中序和后序序列旳构造算法void CreateBinTree3(BinTree *T, char ino, char post, int is, int ps, int n) int k; if(n=0) *T=NULL; else k=Search(ino, postps+n-1); if(k=-1) puts(Error!n); else *T=(BinTNode *)malloc(sizeof(BinTNode); (*T)-data=postps+n-1; if(k=is)

5、(*T)-lchild=NULL; else CreateBinTree3(&(*T)-lchild, ino, post, is, ps, k-is); if(k=is+n-1) (*T)-rchild=NULL; else CreateBinTree3(&(*T)-rchild, ino, post, k+1, ps+(k-is), n-(k-is)-1); /先序遍历二叉树void Preorder(BinTree T) if(T) printf(%c , T-data); Preorder(T-lchild); Preorder(T-rchild); /中序遍历二叉树void Inor

6、der(BinTree T) if(T) Inorder(T-lchild); printf(%c , T-data); Inorder(T-rchild); /后序遍历二叉树void PostOrder(BinTree T) if(T) PostOrder(T-lchild); PostOrder(T-rchild); printf(%c , T-data); /求二叉树旳深度(高度)int GetDepth(BinTree T) int ld, rd; if(!T) return 0; else ld=GetDepth(T-lchild); rd=GetDepth(T-rchild); r

7、eturn ld rd ? ld+1 : rd+1; /求二叉树叶子节点数int GetLeafCount(BinTree T) int count; if(T=NULL) count=0; else if(T-lchild=NULL) & (T-rchild=NULL) count=1; else count = GetLeafCount(T-lchild) + GetLeafCount(T-rchild); return count;/求度为1旳节点个数int GetOneDegreeLeaf(BinTree T) int count; if(T=NULL) count=0; else i

8、f(T-lchild=NULL) & (T-rchild!=NULL) count=1; else if(T-lchild!=NULL) & (T-rchild=NULL) count=1; else count = GetOneDegreeLeaf(T-lchild) + GetOneDegreeLeaf(T-rchild); return count;void main() int depth, leafCount, oneDegreeLeafCount; char pre20, ino20, post20; BinTree root=NULL; /puts(输入前序序列:); /gets

9、(pre); puts(输入中序序列:); gets(ino); puts(输入后序序列:); gets(post); /CreateBinTree(&root); /CreateBinTree2(&root, pre, ino, 0, 0, 6); CreateBinTree3(&root, ino, post, 0, 0, 11); puts(n前序遍历二叉树:); Preorder(root); puts(n中序遍历二叉树:); Inorder(root); puts(n后序遍历二叉树:); PostOrder(root); depth=GetDepth(root); printf(n二叉树深度(高度)为:%d, depth); leafCount=GetLea

温馨提示

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

评论

0/150

提交评论