博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数据结构实验之二叉树的建立与遍历
阅读量:5938 次
发布时间:2019-06-19

本文共 1388 字,大约阅读时间需要 4 分钟。

数据结构实验之二叉树的建立与遍历

题目描述

       已知一个按先序序列输入的字符序列,如abc,,de,g,,f,,,(其中逗号表示空节点)。请建立二叉树并按中序和后序方式遍历二叉树,最后求出叶子节点个数和二叉树深度。

输入

  输入一个长度小于50个字符的字符串。

输出

输出共有4行:
第1行输出中序遍历序列;
第2行输出后序遍历序列;
第3行输出叶子节点个数;
第4行输出二叉树深度。

示例输入

abc,,de,g,,f,,,

示例输出

cbegdfacgefdba35
#include
#include
int ans = 0;struct node{ char ch; struct node *l; struct node *r;};node *creat(node *p){ char c; scanf("%c", &c); if(c == ',') p = NULL; else { p = (node *)malloc(sizeof(node)); p->ch = c; p->l = creat(p->l); p->r = creat(p->r); } return p;}void mid(node *p){ if(p != NULL) { mid(p->l); printf("%c", p->ch); mid(p->r); }}void last(node *p){ if(p != NULL) { last(p->l); last(p->r); printf("%c", p->ch); }}void sta(node *p){ if(p != NULL) { if(p->l == NULL && p->r == NULL) ans++; sta(p->l); sta(p->r); }}int depth(node *p){ int ldep, rdep; if(!p) return 0; else { ldep = depth(p->l); rdep = depth(p->r); } if(ldep > rdep) return ldep+1; else return rdep+1;}int main(){ node *p; p = creat(p); mid(p); printf("\n"); last(p); printf("\n"); sta(p); printf("%d\n", ans); printf("%d\n", depth(p)); return 0;}

转载于:https://www.cnblogs.com/Genesis2018/p/9079861.html

你可能感兴趣的文章
博弈论——一周目小结
查看>>
[Codechef November Challenge 2012] Arithmetic Progressions
查看>>
【堆】【kd-tree】bzoj2626 JZPFAR
查看>>
【计算几何】【bitset】Gym - 101412G - Let There Be Light
查看>>
struts2-spring-plugin-2.0.14.jar中的SessionContextAutowiringInterceptor
查看>>
构造函数
查看>>
部署k8s集群监控Heapster
查看>>
webservice与WCF
查看>>
20款精美的精品电子商务设计~值得一看哦
查看>>
阿里云云服务器上安装Apache
查看>>
试用阿里云邮件推送服务
查看>>
Extra Credits: Easy Games 17
查看>>
Linux组件封装(八)——Socket的封装
查看>>
展开字符串
查看>>
关于选择器(很早之前写的)
查看>>
android 下linux的I2C 读写函数实例
查看>>
CLI组成
查看>>
maven - Eclipse构建maven项目
查看>>
关于VS2008/2010中SORT,stable_sort的比较函数中strict weak ordering
查看>>
局部内部类
查看>>