2022年数据结构二叉树程序 .pdf

上传人:Q****o 文档编号:28354763 上传时间:2022-07-27 格式:PDF 页数:5 大小:35.31KB
返回 下载 相关 举报
2022年数据结构二叉树程序 .pdf_第1页
第1页 / 共5页
2022年数据结构二叉树程序 .pdf_第2页
第2页 / 共5页
点击查看更多>>
资源描述

《2022年数据结构二叉树程序 .pdf》由会员分享,可在线阅读,更多相关《2022年数据结构二叉树程序 .pdf(5页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、#include #include #define QueueMaxSize 20 #define StackMaxSize 10 typedef char ElemType; struct BTreeNode ElemType data; struct BTreeNode* left; struct BTreeNode* right; ; /*前序遍历 */ void Preorder(struct BTreeNode * BT) if(BT!=NULL) printf(%c ,BT-data); Preorder(BT-left); Preorder(BT-right); /*中序遍历 *

2、/ void Inorder(struct BTreeNode * BT) if(BT!=NULL) Inorder(BT-left); printf(%c ,BT-data); Inorder(BT-right); /*后序遍历 */ void Postorder(struct BTreeNode * BT) if(BT!=NULL) Postorder(BT-left); Postorder(BT-right); printf(%c ,BT-data); /*按层遍历 */ 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名

3、师精心整理 - - - - - - - 第 1 页,共 5 页 - - - - - - - - - void Levelorder(struct BTreeNode * BT) struct BTreeNode * p; struct BTreeNode * qQueueMaxSize; int front=0,rear=0; if(BT!=NULL) rear=(rear+1)%QueueMaxSize; qrear=BT; while (front!=rear) front=(front+1)%QueueMaxSize; p=qfront; printf(%c ,p-data); if(p

4、-left!=NULL) rear=(rear+1)%QueueMaxSize; qrear=p-left; if(p-right!=NULL) rear=(rear+1)%QueueMaxSize; qrear=p-right; /*初始化二叉树 */ void InitBTree(struct BTreeNode* BT) *BT=NULL; /*建立二叉树 */ void CleateBTree(struct BTreeNode* BT,char* a) struct BTreeNode* p; struct BTreeNode* sStackMaxSize; int top=-1; i

5、nt k ; int i=0; *BT=NULL; while (ai) 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 5 页 - - - - - - - - - switch (ai) case : break ; case (: if (top=StackMaxSize-1) printf ( 栈空间太小,需要增加StackMaxSize!n); exit (1); top+ ; stop=p; k=1; break ; case ): if (top=-1) pr

6、intf ( 二叉树广义表字符串错!n); exit (1); top- ; break ; case ,: k=2; break ; default: p=(struct BTreeNode *)malloc(sizeof(struct BTreeNode); p-data=ai; p-left=p-right=NULL; if (*BT=NULL) *BT=p; else if (k=1) stop-left=p; else stop-right=p; /*switch end*/ i+; /*检查二叉树是否为空*/ int BTreeEmpty(struct BTreeNode* BT)

7、 if (BT=NULL) return 1 ; else return 0 ; /* 求二叉树深度*/ int BTreeDepth(struct BTreeNode* BT) if(BT=NULL) return 0; else 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 5 页 - - - - - - - - - int dep1=BTreeDepth(BT-left); int dep2=BTreeDepth(BT-right); if(dep1dep2) r

8、eturn dep1+1; else return dep2+1; /*从二叉树中查找值为x 的结点,若存在则返回元素存储位置,否则返回控值*/ ElemType* FindBTree(struct BTreeNode* BT,ElemType x) if (BT=NULL) return NULL; else if (BT-data=x) return &(BT-data); else ElemType* p; if (p=FindBTree(BT-left,x) return p ; if (p=FindBTree(BT-right,x) return p ; return NULL ;

9、/*输出二叉树 */ void PrintBTree(struct BTreeNode* BT) if (BT!=NULL) printf (%c,BT-data); if(BT-left!=NULL | BT-right!=NULL) printf () ; PrintBTree (BT-left) ; if (BT-right!=NULL) printf (,); PrintBTree(BT-right); printf (); /*清除二叉树,使之变为一课空树*/ void ClearBTree(struct BTreeNode* BT) if (*BT!=NULL) ClearBTre

10、e(&(*BT)-left); ClearBTree(&(*BT)-right); free(*BT); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 4 页,共 5 页 - - - - - - - - - *BT=NULL; /*假定采用如下程序调试上述对二叉树操作的各种算法*/ /*#include 二叉树操作 .c */ /*该程序文件保存有对二叉树运算的各种算法*/ void main () struct BTreeNode* bt; char b50; ElemType

11、x ,*px; InitBTree(&bt) ; printf ( 输入二叉树广义表字符串:n); scanf (%s,b); CleateBTree(&bt,b); PrintBTree(bt); printf (n); printf ( 前序: ); Preorder(bt); printf (n); printf ( 中序: ); Inorder(bt); printf (n); printf ( 后序: ); Postorder(bt); printf (n); printf ( 按层: ); Levelorder(bt); printf (n); printf ( 输入一个待查的字符:n); scanf ( %c,&x); px=FindBTree(bt,x); if (px) printf ( 查找成功: %cn,*px); else printf ( 查找失败: %cn); printf ( 二叉树的深度为:); printf (%dn,BTreeDepth(bt); ClearBTree(&bt); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 5 页,共 5 页 - - - - - - - - -

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 技术资料 > 技术总结

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁