版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
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. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 麻醉学循证医学应用手册
- 果树老园更新改造手册
- 2026年版权授权使用合同(合作双方)二篇
- 电工焊工试题及答案
- 7年级中考试卷历史
- 2026-2031年中国内河水运行业市场调查分析及投资前景预测报告
- 2024年陕西交通职业技术学院高职单招职业适应性测试考试模拟试卷附答案详解(突破训练)
- 2025年红枫湖职业学院单招职业技能考试题库含完整答案详解【夺冠系列】
- 2026年秦皇岛文旅职业学院高职单招职业技能考试题库附答案详解【A卷】
- 2025年渭华专修学院高职单招职业技能考试模拟试卷及答案详解【易错题】
- 2025年临夏州事业单位考试真题及答案
- (三模)豫西北教研联盟(平许济洛)2025-2026学年高三3月第三次质量检测英语试卷(含答案解析)+听力音频+听力原文
- 球馆运营制度
- 2026年北京市离婚协议书规范范本(可下载打印)
- 2026届广西北海市英语高三上期末质量跟踪监视试题含解析
- 控申业务竞赛试题
- (完整版)2026年劳动法实施细则全文
- 2025年砀山县国企考试真题
- 2026年记者(新闻基础知识)自测试题及答案
- TCABEE《有色金属工业含铊废水处理技术规范》
- DB23∕T 3269-2022 水稻基质育苗规程
评论
0/150
提交评论