Linux C 算法与数据结构 --二叉树

头文件BiTree.h

[cpp] view plaincopy
  1. typedef int Item;  
  2. typedef struct node  
  3. {  
  4.     struct node * lchild;  
  5.     struct node * rchild;  
  6.     Item data;  
  7. }BiTNode,*BiTree;  
  8.   
  9. /*构造一棵新的二叉树*/  
  10. BiTree InitBiTree(BiTNode *root);  
  11.   
  12. /*生成节点*/  
  13. BiTNode *MakeNode(Item item,BiTNode *lchild,BiTNode *rchild);  
  14. /*释放节点*/  
  15. void FreeNode(BiTNode *pnode);  
  16.   
  17. /*清空一棵二叉树*/  
  18. void ClearBiTree(BiTree tree);  
  19.   
  20. /*销毁一棵二叉树*/  
  21. void DestroyBiTree(BiTree tree);  
  22.   
  23. /*判定是否为空*/  
  24. IsEmpty(BiTree tree);  
  25.   
  26. /*返回树的深度*/  
  27. GetDepth(BiTree tree);  
  28.   
  29. /*返回根*/  
  30. BiTree GetRoot(BiTree tree);  
  31.   
  32. /*返回节点值*/  
  33. Item GetItem(BiTNode *pnode);  
  34.   
  35. /*设置节点值*/  
  36. void SetItem(BiTNode *pnode,Item item);  
  37.   
  38. /*设置左子树*/  
  39. BiTree SetLChild(BiTree parent,BiTree lchild);  
  40.   
  41. /*设置右子树*/  
  42. BiTree SetRChild(BiTree parent,BiTree rchild);  
  43.   
  44. /*返回左子树*/  
  45. BiTree GetLChild(BiTree tree);  
  46.   
  47. /*返回右子树*/  
  48. BiTree GetRChild(BiTree tree);  
  49.   
  50. /*插入新子树*/  
  51. BiTree InsertChild(BiTree parent,int lr,BiTree child);  
  52.   
  53. /*删除子树*/  
  54. void DeleteChild(BiTree parent,int lr);  
  55.   
  56. /*先序遍历二叉树*/  
  57. PreOrderTraverse(BiTree tree,void(*visit)());  
  58.   
  59. /*中序遍历二叉树*/  
  60. InOrderTraverse(BiTree tree,void(*visit)());  
  61.   
  62. /*后序遍历二叉树*/  
  63. PostOrderTraverse(BiTree tree,void(*visit)());  

实现文件BiTree.c

[cpp] view plaincopy
  1. #include"BiTree.h"  
  2. #include<malloc.h>  
  3. #include<stdlib.h>  
  4.   
  5. /*构造一棵新的二叉树*/  
  6. BiTree InitBiTree(BiTNode *root)  
  7. {  
  8.     BiTree tree = root;  
  9.     return tree;  
  10. }  
  11.   
  12. /*生成节点*/  
  13. BiTNode *MakeNode(Item item,BiTNode *lchild,BiTNode *rchild)  
  14. {  
  15.     BiTNode * pnode = (BiTNode *)malloc(sizeof(BiTNode));  
  16.     if(pnode)  
  17.     {  
  18.         pnode->data = item;  
  19.         pnode->lchild = lchild;  
  20.         pnode->rchild = rchild;  
  21.     }  
  22.     return pnode;      
  23. }  
  24.   
  25. /*释放节点*/  
  26. void FreeNode(BiTNode *pnode)  
  27. {  
  28.     if(pnode!=NULL)  
  29.         free(pnode);  
  30. }  
  31.   
  32. /*清空一棵二叉树*/  
  33. void ClearBiTree(BiTree tree)  
  34. {  
  35.     BiTNode * pnode = tree;  
  36.     if(pnode->lchild!=NULL)  
  37.         ClearBiTree(pnode->lchild);  
  38.   
  39.     if(pnode->rchild!=NULL)  
  40.         ClearBiTree(pnode->rchild);  
  41.   
  42.     FreeNode(pnode);  
  43. }  
  44.   
  45. /*销毁一棵二叉树*/  
  46. void DestroyBiTree(BiTree tree)  
  47. {  
  48.     if(tree)  
  49.         ClearBiTree(tree);      
  50. }  
  51.   
  52. /*判定是否为空*/  
  53. IsEmpty(BiTree tree)  
  54. {  
  55.     if(tree==NULL)  
  56.         return 0;  
  57.     else  
  58.         return 1;  
  59. }  
  60.   
  61. /*返回树的深度*/  
  62. int GetDepth(BiTree tree)  
  63. {  
  64.     int cd,ld,rd;  
  65.     cd = ld = rd = 0;  
  66.     if(tree)  
  67.     {  
  68.         ld = GetDepth(tree->lchild);  
  69.         rd = GetDepth(tree->rchild);  
  70.         cd = (ld > rd ? ld : rd);  
  71.         return cd+1;  
  72.     }  
  73.     else  
  74.         return 0;  
  75. }  
  76.   
  77. /*返回根*/  
  78. BiTree GetRoot(BiTree tree)  
  79. {  
  80.     return tree;  
  81. }  
  82.   
  83. /*返回节点值*/  
  84. Item GetItem(BiTNode *pnode)  
  85. {  
  86.     return pnode->data;  
  87. }  
  88.   
  89. /*设置节点值*/  
  90. void SetItem(BiTNode *pnode,Item item)  
  91. {  
  92.     pnode->data = item;  
  93. }  
  94.   
  95. /*设置左子树*/  
  96. BiTree SetLChild(BiTree parent,BiTree lchild)  
  97. {  
  98.     parent->lchild = lchild;  
  99.     return lchild;  
  100. }  
  101.   
  102. /*设置右子树*/  
  103. BiTree SetRChild(BiTree parent,BiTree rchild)  
  104. {  
  105.     parent->rchild = rchild;  
  106.     return rchild;  
  107. }  
  108.   
  109. /*返回左子树*/  
  110. BiTree GetLChild(BiTree tree)  
  111. {  
  112.     if(tree)  
  113.         return tree->lchild;  
  114.     return NULL;  
  115. }  
  116.   
  117. /*返回右子树*/  
  118. BiTree GetRChild(BiTree tree)  
  119. {  
  120.     if(tree)  
  121.         return tree->rchild;  
  122.     return NULL;  
  123. }  
  124.   
  125. /*插入新子树*/  
  126. BiTree InsertChild(BiTree parent,int lr,BiTree child)  
  127. {  
  128.     if(parent)  
  129.     {  
  130.         if( lr == 0 && parent->lchild == NULL)  
  131.         {  
  132.             parent->lchild = child;  
  133.             return child;  
  134.         }      
  135.         if( lr == 1 && parent->rchild == NULL)  
  136.         {  
  137.             parent->rchild = child;  
  138.             return child;  
  139.         }      
  140.     }  
  141.     return NULL;      
  142. }  
  143.   
  144. /*删除子树*/  
  145. void DeleteChild(BiTree parent,int lr)  
  146. {  
  147.     if(parent)  
  148.     {  
  149.         if( lr == 0 && parent->lchild != NULL)  
  150.         {  
  151.             parent->lchild = NULL;  
  152.             FreeNode(parent->lchild);  
  153.         }      
  154.         if( lr == 1 && parent->rchild != NULL)  
  155.         {  
  156.             parent->rchild = NULL;  
  157.             FreeNode(parent->rchild);  
  158.         }      
  159.     }  
  160. }  
  161.   
  162. /*先序遍历二叉树*/  
  163. PreOrderTraverse(BiTree tree,void(*visit)())  
  164. {  
  165.     BiTNode * pnode = tree;  
  166.     if(pnode)  
  167.     {  
  168.         visit(pnode->data);  
  169.         PreOrderTraverse(pnode->lchild,visit);  
  170.         PreOrderTraverse(pnode->rchild,visit);  
  171.     }  
  172. }  
  173.   
  174. /*中序遍历二叉树*/  
  175. InOrderTraverse(BiTree tree,void(*visit)())  
  176. {  
  177.     BiTNode * pnode = tree;  
  178.     if(pnode)  
  179.     {  
  180.         InOrderTraverse(pnode->lchild,visit);  
  181.         visit(pnode->data);  
  182.         InOrderTraverse(pnode->rchild,visit);  
  183.     }  
  184. }  
  185.   
  186. /*后序遍历二叉树*/  
  187. PostOrderTraverse(BiTree tree,void(*visit)())  
  188. {  
  189.     BiTNode * pnode = tree;  
  190.     if(pnode)  
  191.     {  
  192.         PostOrderTraverse(pnode->lchild,visit);          
  193.         PostOrderTraverse(pnode->rchild,visit);  
  194.         visit(pnode->data);  
  195.     }  
  196. }  

测试程序如下

[cpp] view plaincopy
  1. #include"BiTree.h"  
  2. #include<stdio.h>  
  3. void print(Item item)  
  4. {  
  5.     printf("%d ",item);  
  6. }  
  7. main()  
  8. {      
  9.     BiTNode * n1 = MakeNode(10,NULL,NULL);  
  10.     BiTNode * n2 = MakeNode(20,NULL,NULL);  
  11.     BiTNode * n3 = MakeNode(30,n1,n2);  
  12.     BiTNode * n4 = MakeNode(40,NULL,NULL);  
  13.     BiTNode * n5 = MakeNode(50,NULL,NULL);  
  14.     BiTNode * n6 = MakeNode(60,n4,n5);  
  15.     BiTNode * n7 = MakeNode(70,NULL,NULL);  
  16.   
  17.     BiTree tree = InitBiTree(n7);  
  18.     SetLChild(tree,n3);  
  19.     SetRChild(tree,n6);  
  20.   
  21.     printf("树的深度为:%d",GetDepth(tree));  
  22.       
  23.     printf("\n先序遍历如下:");  
  24.     PreOrderTraverse(tree,print);  
  25.   
  26.     printf("\n中序遍历如下:");  
  27.     InOrderTraverse(tree,print);  
  28.   
  29.     printf("\n后序遍历如下:");  
  30.     PostOrderTraverse(tree,print);  
  31.   
  32.     DeleteChild(tree,1);  
  33.     printf("\n后序遍历如下:");  
  34.     PostOrderTraverse(tree,print);  
  35.   
  36.     DestroyBiTree(tree);  
  37.     if(IsEmpty(tree))  
  38.      printf("\n二叉树为空,销毁完毕\n");  
  39. }  


执行结果如下:

[cpp] view plaincopy
  1. fs@ubuntu:~/qiang/tree$ ./Test  
  2. 树的深度为:3  
  3. 先序遍历如下:70 30 10 20 60 40 50   
  4. 中序遍历如下:10 30 20 70 40 60 50   
  5. 后序遍历如下:10 20 30 40 50 60 70   
  6. 二叉树为空,销毁完毕  

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/402425.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Spring 实现数据库读写分离

Spring 实现数据库读写分离 现在大型的电子商务系统&#xff0c;在数据库层面大都采用读写分离技术&#xff0c;就是一个Master数据库&#xff0c;多个Slave数据库。Master库负责数据更新和实时数据查询&#xff0c;Slave库当然负责非实时数据查询。因为在实际的应用中&#xf…

vue 3.x 中使用ele-image时相对路径的图片加载失败

参考文档&#xff1a; https://element.eleme.cn/#/zh-CN/component/installation 环境: Mac OS X 10.12 [zcmele 2]$node -v v12.6.0 [zcmele 3]$npm -v 6.9.0 [zcmele 4]$cnpm -v cnpm6.1.0 (/usr/local/lib/node_modules/cnpm/lib/parse_argv.js) npm6.10.2 (/usr/local/li…

JavaScript函数绑定

一个简单的函数绑定 在JavaScript与DOM交互中经常需要使用函数绑定&#xff0c;定义一个函数然后将其绑定到特定DOM元素或集合的某个事件触发程序上&#xff0c;绑定函数经常和回调函数及事件处理程序一起使用&#xff0c;以便把函数作为变量传递的同时保留代码执行环境。 <…

ie6兼容问题汇总

这几天在查找和解决网页在ie6下的兼容性问题花了我不少的时间&#xff0c;参考了网上的一些解决方法和自己做出来比较有效果的给大家参考一下&#xff0c;也方便我日后再用到&#xff1a; 1.IE的cache设置为Every visit to the page&#xff0c;而不是默认的Automatically。基本…

Linux C 数据结构---线性表

数据结构指的是数据元素及数据元素之间的相互关系&#xff0c;包含下面三方面的内容&#xff1a; 其中&#xff0c;线性表是最基本、最简单、也是最常用的一种数据结构。线性表中数据元素之间的关系是一对一的关系&#xff0c;即除了第一个和最后一个数据元素之外&#xff0c;其…

Postman发送请求时带上登录信息

正常情况下&#xff0c;没有登录验证等公共接口&#xff0c;用postman进行get或post请求都很方便&#xff0c;加上相应的参数就行。 但是对于某些接口&#xff0c;可能需要先登录后才能请求&#xff0c;这时如果按正常的思路请求&#xff0c;可能就会被拦截了。 对于这种情况…

Chrome跨域问题

2019独角兽企业重金招聘Python工程师标准>>> 在chrome图标&#xff0c;右键--->属性 --->目标 路径末尾添加 “--disable-web-security” 重启即可 转载于:https://my.oschina.net/u/861562/blog/152171

解决安装mysql的”A Windows service with the name MySQL already exists.“问题

如果以前安装过mysql&#xff0c;卸载重装&#xff0c;很可能会碰到”A Windows service with the name MySQL already exists.“这样的提示。即服务已经存在。我们可以在window任务管理器----服务中查看&#xff0c;发现确实存在&#xff0c;没有卸载干净。 解决这个问题&…

[vue] 父子组件间传值

环境说明: vue 3.x ant-vue 父组件(Album.vue)使用: <template><div><a-button type"primary" icon"plus" click"uploadImage">图片</a-button><upload-image :visible.sync"visible"></upload-i…

Linux C 数据结构---单向链表

线性表存储结构分为顺序存储、链式存储。 顺序存储的优点&#xff1a; 顺序存储的缺点&#xff1a; 链表就是典型的链式存储&#xff0c;将线性表L &#xff08;a0,a1,a2,........an-1&#xff09;中个元素分布在存储器的不同存储块&#xff0c;成为结点&#xff08;Node&…

杂感

成功的IT大佬&#xff0c;我读着沸腾十五年&#xff0c;激荡三十年&#xff0c;知识英雄&#xff0c;满腔热血&#xff0c;梦想真的是个好东西&#xff0c;让你在这个国度不至于行尸走肉。走上编程这条路&#xff0c;有人因走投无路而走此路&#xff0c;有人怀抱着梦想&#xf…

分页插件--根据Bootstrap Paginator改写的js插件

刚刚出来实习&#xff0c;之前实习的公司有一个分页插件&#xff0c;和后端的数据字典约定好了的&#xff0c;基本上是看不到内部是怎么实现的&#xff0c;新公司是做WPF的&#xff0c;好像对于ASP.NET的东西不多&#xff0c;导师扔了一个小系统给我和另一个同事&#xff0c;指…

sprintboot 配置文件上传大小(默认是1MB)

application.yaml: spring:profiles:active: activatedjackson:date-format: yyyy/MM/dd HH:mm:sstime-zone: GMT8servlet:multipart:max-file-size: 6MBmax-request-size: 6MB

Android ANR

ANRs (“Application Not Responding”)&#xff0c;意思是”应用没有响应“。 1&#xff09;什么引发了ANR&#xff1f;在Android里&#xff0c;应用程序的响应性是由Activity Manager和WindowManager系统服务监视的。当它监测到以下情况中的一个时&#xff0c;Android就会针对…

Linux C 算法分析初步

提到算法&#xff0c;必须提到数据结构&#xff0c;我们要知道一个著名公式&#xff1a; 数据结构 算法 程序 我们先看看下面这张图&#xff1a; 算法是什么&#xff1f;算法是一个有穷规则&#xff08;或语句、指令&#xff09;的有续集和。他确定了解决某一问题的一个运算序…

hive实例,GPRS流量统计

2019独角兽企业重金招聘Python工程师标准>>> 最近面试&#xff0c;发现很多公司在使用hive对数据进行处理。 hive是hadoop家族成员&#xff0c;是一种解析like sql语句的框架。它封装了常用MapReduce任务&#xff0c;让你像执行sql一样操作存储在HDFS的表。 hive的表…

90.不用其它变量进行变量互换

package com.chongrui.test;//不用其它变量进行变量互换import java.util.Scanner; //导入扫描器public class test { public static void main(String[] args){ Scanner scan new Scanner(System.in);//创建扫描器 System.out.println("请输入变量A的值");//输入变…

android中 MediaStore提取缩略图和原始图像

android中 MediaStore提取缩略图和原始图像 . 欢迎转载&#xff1a;http://blog.csdn.net/djy1992/article/details/10005767提取图像的Thumbnail 1) 启动Intent Intent intent new Intent(Intent.ACTION_GET_CONTENT, null); intent.setType("image/*"); intent.pu…

Linux C 数据结构—-循环链表

前面我们学习了单向链表&#xff0c;现在介绍单向循环链表&#xff0c;单向循环链表是单链表的一种改进&#xff0c;若将单链表的首尾节点相连&#xff0c;便构成单向循环链表结构&#xff0c;如下图&#xff1a; 对于一个循环链表来说,其首节点和末节点被连接在一起。这种方式…

预备作业03 20162320刘先润

第一次编代码 这几周自学了Linux基础入门&#xff0c;有好多想吐槽的地方&#xff0c;所以这篇随笔是带有半吐槽性质的&#xff0c;这是我学完后最真实的感受 我在电脑上按照教程安装了虚拟机&#xff0c;对于Linux这个完全陌生的概念也稍微算是有些理解&#xff0c;但是还有很…