1. #include<stdio.h>
  2. #include<stdlib.h>
  3. #include<string.h>
  4.  
  5. #define num 100
  6. #define OK 1
  7. #define ERROR 0
  8. #define OVERFLOW -1
  9. #define FALSE 0
  10. #define TRUE 1
  11.  
  12. typedef int Status;
  13. typedef char DataType;
  14.  
  15. typedef struct node
  16. {
  17. DataType data;
  18. struct node *lchild,*rchild;
  19. }BinTNode,*BinTree;
  20.  
  21. typedef BinTNode* ElemType;
  22.  
  23. #define QueueSize 100
  24. //循环队列的存储结构
  25. typedef struct
  26. {
  27. ElemType *base;
  28. int front,rear;
  29. }SeQueue;
  30.  
  31. Status CreateBiTree(BinTree &bt)
  32. {//按照先序遍历次序递归建立二叉树。
  33. //ABC@@DE@G@@F@@
  34. char ch;
  35. scanf("%c",&ch);
  36. if(ch == '@') bt = NULL;
  37. else
  38. {
  39. bt = (BinTNode*)malloc(sizeof(BinTNode));
  40. bt->data = ch; //生成根结点
  41. CreateBiTree(bt->lchild); //构造左子树
  42. CreateBiTree(bt->rchild); //构造右子树
  43. }
  44. return OK;
  45. }
  46.  
  47. Status Inorder(BinTree bt)
  48. {//二叉树中序遍历非递归算法
  49. BinTNode *stack[num]; //定义栈数组
  50. int top = ; //初始化栈
  51. stack[top] = bt;
  52. do
  53. {
  54. while(NULL!=stack[top])
  55. {//扫描根结点及其所有的左结点并入栈
  56. top = top+;
  57. stack[top] = stack[top-]->lchild;
  58. }
  59. top = top-; //退栈
  60. if(top>=) //判断栈是否为空
  61. {
  62. printf("%c",stack[top]->data); //访问结点
  63. stack[top] = stack[top]->rchild; //扫描右子树
  64. }
  65. }while(top>=);
  66. return OK;
  67. }
  68.  
  69. void PostOrder(BinTree bt)
  70. {//二叉树后序遍历递归算法
  71. if(bt)
  72. {
  73. PostOrder(bt->lchild);
  74. PostOrder(bt->rchild);
  75. printf("%c",bt->data);
  76. }
  77.  
  78. }
  79.  
  80. int Size(BinTree bt)
  81. {//统计二叉树中所有结点的个数
  82. int num1,num2;
  83. if(bt==NULL)
  84. return ;
  85. else if(bt->lchild==NULL && bt->rchild==NULL)
  86. return ;
  87. else
  88. {
  89. num1 = Size(bt->lchild);
  90. num2 = Size(bt->rchild);
  91. return (num1+num2+);
  92. }
  93. }
  94.  
  95. int LeafCount(BinTree bt)
  96. {//叶子结点总数为
  97. int LeafNum;
  98. if(bt==NULL)
  99. LeafNum = ;
  100. else if((bt->lchild==NULL) && (bt->rchild==NULL)) LeafNum = ;
  101. else LeafNum = LeafCount(bt->lchild)+LeafCount(bt->rchild);
  102. //叶子数为左右子树叶子数目之和
  103. return LeafNum;
  104. }
  105.  
  106. int Depth(BinTree bt)
  107. {//统计二叉树深度
  108. int hl,hr,max;
  109. if(bt!=NULL)
  110. {
  111. hl = Depth(bt->lchild); //求左子树的深度
  112. hr = Depth(bt->rchild); //求右子树的深度
  113. max = hl>hr?hl:hr;
  114. return (max+); //返回树的深度
  115. }
  116. else
  117. return ;
  118. }
  119.  
  120. void Exchange(BinTree bt)
  121. {//交换左右二叉树
  122. if(bt == NULL)
  123. return;
  124. BinTNode *temp;
  125. temp = bt->lchild;
  126. bt->lchild = bt->rchild;
  127. bt->rchild = temp;
  128. Exchange(bt->lchild);
  129. Exchange(bt->rchild);
  130. }
  131.  
  132. //构造一个循环队列
  133. Status InitQueue(SeQueue &Q)
  134. {
  135. Q.base = (ElemType *)malloc(QueueSize *sizeof(ElemType));
  136. if(!Q.base) exit();
  137. Q.front = Q.rear = ;
  138. return OK;
  139. }
  140. //插入新的元素为队尾元素
  141. Status EnQueue(SeQueue &Q,ElemType e)
  142. {
  143. if((Q.rear+)%QueueSize==Q.front)
  144. {
  145. printf("Queue overflow");
  146. return ;
  147. }
  148. Q.base[Q.rear] = e;
  149. Q.rear = (Q.rear+)%QueueSize;
  150. return ;
  151. }
  152.  
  153. //删除队头元素
  154. Status DeleteQ(SeQueue &Q,ElemType &e)
  155. {
  156. if(Q.front == Q.rear)
  157. {
  158. printf("Queue enpty");
  159. return ERROR;
  160. }
  161. e = Q.base[Q.front];
  162. Q.front = (Q.front+)%QueueSize;
  163. return OK;
  164. }
  165.  
  166. //判空循环队列
  167. Status IsEmptyQ(SeQueue Q)
  168. {
  169. if(Q.front == Q.rear)
  170. return TRUE;
  171. else
  172. return FALSE;
  173. }
  174. //层次遍历二叉树
  175. void LevelOrderTraversal(BinTree bt)
  176. {
  177. SeQueue Q;
  178. ElemType e;
  179. //若是空树,则直接返回
  180. InitQueue(Q); //创建并初始化队列
  181. if(bt) EnQueue(Q,bt);
  182. while(!IsEmptyQ(Q))
  183. {
  184. DeleteQ(Q,e);
  185. printf("%4c",e->data);
  186. if(e->lchild) EnQueue(Q,e->lchild);
  187. if(e->rchild) EnQueue(Q,e->rchild);
  188. }
  189. }
  190.  
  191. void main()
  192. {
  193. BinTree bt;
  194. int xz = ;
  195. int yz,sd;
  196. while(xz)
  197. {
  198. printf("二叉树的建立及其基本操作\n");
  199. printf("===========================\n");
  200. printf("1,建立二叉树的存储结构\n");
  201. printf("2,二叉树的基本操作\n");
  202. printf("3,交换二叉树的左右\n");
  203. printf("4,二叉树的层次遍历\n");
  204. printf("0退出系统\n");
  205. printf("==========================\n");
  206. printf("请选择:(0~4)\n");
  207. scanf("%d",&xz);
  208. getchar();
  209. switch(xz)
  210. {//输入:ABC@@DE@G@@F@@@输出:CBEGDFA
  211. case :
  212. printf("输入二叉树的先序序列结点值:\n");
  213. CreateBiTree(bt);
  214. printf("二叉树的链式存储结构建立完成\n");
  215. printf("\n");
  216. break;
  217. case :
  218. printf("该二叉树的后序遍历序列是:");
  219. PostOrder(bt);
  220. printf("\n"); //输出CGEFDBA
  221. printf("该二叉树的中序遍历序列是:");
  222. Inorder(bt);
  223. printf("\n"); //输出CBEGDFA
  224. printf("该二叉树的结点的个树是:%d\n",Size(bt));
  225. yz = LeafCount(bt);
  226. printf("叶子结点个数是:%d\n",yz);
  227. sd = Depth(bt);
  228. printf("该二叉树的深度是:%d\n",sd);
  229. printf("\n");
  230. break;
  231. case :
  232. Exchange(bt);
  233. printf("该二叉树已交换左右子树!\n");
  234. printf("\n");
  235. break;
  236. case :
  237. printf("该二叉树的层序遍历序列是:");
  238. LevelOrderTraversal(bt);
  239. printf("\n"); //输出ABCDEFG
  240. case :
  241. break;
  242. //default:printf("请输入正确的选项:(0~4):\n");
  243. // break;
  244.  
  245. }
  246. }
  247. }

<youcengcibianli>的更多相关文章

  1. 简单物联网:外网访问内网路由器下树莓派Flask服务器

    最近做一个小东西,大概过程就是想在教室,宿舍控制实验室的一些设备. 已经在树莓上搭了一个轻量的flask服务器,在实验室的路由器下,任何设备都是可以访问的:但是有一些限制条件,比如我想在宿舍控制我种花 ...

  2. 利用ssh反向代理以及autossh实现从外网连接内网服务器

    前言 最近遇到这样一个问题,我在实验室架设了一台服务器,给师弟或者小伙伴练习Linux用,然后平时在实验室这边直接连接是没有问题的,都是内网嘛.但是回到宿舍问题出来了,使用校园网的童鞋还是能连接上,使 ...

  3. 外网访问内网Docker容器

    外网访问内网Docker容器 本地安装了Docker容器,只能在局域网内访问,怎样从外网也能访问本地Docker容器? 本文将介绍具体的实现步骤. 1. 准备工作 1.1 安装并启动Docker容器 ...

  4. 外网访问内网SpringBoot

    外网访问内网SpringBoot 本地安装了SpringBoot,只能在局域网内访问,怎样从外网也能访问本地SpringBoot? 本文将介绍具体的实现步骤. 1. 准备工作 1.1 安装Java 1 ...

  5. 外网访问内网Elasticsearch WEB

    外网访问内网Elasticsearch WEB 本地安装了Elasticsearch,只能在局域网内访问其WEB,怎样从外网也能访问本地Elasticsearch? 本文将介绍具体的实现步骤. 1. ...

  6. 怎样从外网访问内网Rails

    外网访问内网Rails 本地安装了Rails,只能在局域网内访问,怎样从外网也能访问本地Rails? 本文将介绍具体的实现步骤. 1. 准备工作 1.1 安装并启动Rails 默认安装的Rails端口 ...

  7. 怎样从外网访问内网Memcached数据库

    外网访问内网Memcached数据库 本地安装了Memcached数据库,只能在局域网内访问,怎样从外网也能访问本地Memcached数据库? 本文将介绍具体的实现步骤. 1. 准备工作 1.1 安装 ...

  8. 怎样从外网访问内网CouchDB数据库

    外网访问内网CouchDB数据库 本地安装了CouchDB数据库,只能在局域网内访问,怎样从外网也能访问本地CouchDB数据库? 本文将介绍具体的实现步骤. 1. 准备工作 1.1 安装并启动Cou ...

  9. 怎样从外网访问内网DB2数据库

    外网访问内网DB2数据库 本地安装了DB2数据库,只能在局域网内访问,怎样从外网也能访问本地DB2数据库? 本文将介绍具体的实现步骤. 1. 准备工作 1.1 安装并启动DB2数据库 默认安装的DB2 ...

  10. 怎样从外网访问内网OpenLDAP数据库

    外网访问内网OpenLDAP数据库 本地安装了OpenLDAP数据库,只能在局域网内访问,怎样从外网也能访问本地OpenLDAP数据库? 本文将介绍具体的实现步骤. 1. 准备工作 1.1 安装并启动 ...

随机推荐

  1. Unity3D学习笔记(十九):UGUI、Image、Text、Button

    UGUI:Unity官方最新,与NGUI同源 UI:User Interface(用户的操作界面),图片+文字 UGUI的组件: 1.创建UGUI组件时,会默认创建Canvas(画布)和EventSy ...

  2. java多线程编程模式

    前言 区别于java设计模式,下面介绍的是在多线程场景下,如何设计出合理的思路. 不可变对象模式 场景 1. 对象的变化频率不高 每一次变化就是一次深拷贝,会影响cpu以及gc,如果频繁操作会影响性能 ...

  3. C指针 的一些练习

    注:此篇是我使用指针敲的一些题目的集成,有一些代码是重复的(挠头).这样做的目的是进行前后的一些比较和收获一些心得(?). 关于上一次我上台的题目: 题目:输入十个整数,进行排序. 做法1:(传递指针 ...

  4. bnu 51636 Squared Permutation 线段树

    Squared Permutation Time Limit: 6000ms Memory Limit: 262144KB 64-bit integer IO format: %lld      Ja ...

  5. hdu 1325 Is It A Tree? 并查集

    Is It A Tree? Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Tot ...

  6. python 打包成tar包

    def make_targz(output_filename, source_dir): with tarfile.open(output_filename, "w:gz") as ...

  7. python 集合元素添加

    #A new empty set color_set = set() color_set.add("Red") print(color_set) #Add multiple ite ...

  8. [ios]object-c math.h里的数学计算公式介绍

    参考:http://blog.csdn.net/yuhuangc/article/details/7639117 头文件:<math.h> 1. 三角函数  double sin (dou ...

  9. 微信小程序 - 简述

    1.小程序理解 基于微信的 免安装 MVVM 应用 编码使用 ES 6 一个页面基本组成:wxml wxss js ( html.css.js ) 2. 常见用法 ( 基本就是跟着例子走.. ) 设置 ...

  10. 30分钟了解如何使用Kafka

    Kafka是当下对海量数据提供了最佳支持的MQ中间件,无论是高并发的处理,还是依托zookeeper的水平拓展都有不俗的特性.由于公司最近也在尝试如何将它应用到开发中以对业务更好的支撑,因此特地分享一 ...