数据结构与算法之九 树结构

举报
tea_year 发表于 2021/12/30 00:03:26 2021/12/30
【摘要】 视频课堂https://edu.csdn.net/course/play/7621 在本章中,你将学习: 在树中存储数据 实现二叉树 实现二叉搜索树 假设你被要求呈现操作系统的目录结构。 目录结构含有不同的文件夹和文件。一个文件夹可能含有更多的子文件夹...
在本章中,你将学习:
在树中存储数据
实现二叉树
实现二叉搜索树
假设你被要求呈现操作系统的目录结构。
目录结构含有不同的文件夹和文件。一个文件夹可能含有更多的子文件夹和文件。
在这种情况下,要用线型结构来表示这种结构几乎是不可能的,因为所有的项目之间都有层级 关系。
要表示这样的结构,就需要一种非线型的数据存储机制。

树是非线性存储的结构(物理结构),同时也是逻辑结构;
栈、队列:逻辑结构;是线性存储,采用数组/链表来实现;
应用:操作系统目录、树形控件、树形菜单.通过树形控件、树形菜单来实现行政区域图表示,部门级别管理等等。树形结构元素之间的关系是有层次的。
二叉树的实际应用!求助
今天在做MIS系统时遇到一个问题,一个部门的数据库的设计!部门的组织结构图很明显是数据结构中的树的结构,对于树的三种存储结构来说(双亲,孩子,孩子-兄弟表示法),该采用那种数据结构呢?
说明:我做的这个部门表因为设计的部门多,修改频繁,所以可能双亲方法不是最好的!

树被应用于数据元素之间的关系以层级关系来表示的应用程序中。


最顶层的节点被称为根(根节点)。


树中的每一个节点在其层级下可能有子树。


叶子节点:指没有子节点的节点。


子树: 是树结构的一部分, 但它本身也可被看作一个树结构,这就是子树。
子树也可以含有叶子节点。


边: 从父节点到子节点的连接被称为一个边。


兄弟: 它指同一个节点的子节点。


节点的层级: 它指一个节点与根节点之间的距离(到根节点的边的数目)。 根节点永远位于 0 级。
当你将树移至低处,层级增加 1


树结构的深度: 指一个树结构的最大层级 +1
下面的树结构的深度是 4

定义二叉树

一个二叉树就是每个节点 只能 最多拥有 2 个子节点的树结构。这些子节 点一般被视为左子节点和右子节点。
二叉树有各种类型:
严格二叉树
满二叉树

完整二叉树

满二叉树
深度 d 的二叉树拥有刚好 2d 1 个节点。


完整二叉树:
指有 n 个节点且深度为 d ,且其节点对应深度为 k 的完整二叉树中序号从 0 n 1 的节点。


二叉树的数组表示:
所有节点被表示为数组中的元素。


二叉树的链接表现形式:
使用链接列表来实现一个二叉树。
链接表示中的每个节点都具有以下信息:
数据
对左子节点的引用
对右子节点的引用
如果一个节点不含有左子节点或右子节点,或一个子节点都没有,相应的左(右) 子节点字段就指向 NULL


你可以在二叉树上执行各种操作。
在二叉树上最常见的操作是遍历。
遍历指的是访问树中所有节点一次的过程。 ( 依次访问 )
遍历二叉树有三种方式:
中序遍历( Inorder traversal
前序遍历( Preorder traversal
后序遍历( Postorder traversal


中序遍历一个二叉树所需的步骤如下:
      1. 遍历左子树
      2. 访问根节点
      3. 遍历右子树
让我们考虑一个示例。


按前序遍历一个二叉树的顺序如下:
      1. 访问根节点
      2. 遍历左子树
      3. 遍历右子树


在二叉树中进行后序遍历的步骤如下:
1.   遍历左子树
2. 遍历右子树
3. 访问根节点


实现一个二叉搜索树

假设有一家移动电话公司保存着它遍及全世界的数百万的客户信息。每个客户都分配有一个唯一的身份号(id)。可以通过各自id来读取每个客户的记录。这些id需要以排序后的方式进行存储,这样你就能轻松对这些数据进行事务操作,如搜索、插入和删除



你会用什么数据结构来存储客户的 id
你可以使用一个数组吗?
在数组中搜索操作是很快的。
然而,在数组中插入和删除却是很复杂的。
在这种情况下,要存储的客户 id 的数量是很大的。因此,插入和删除将会非常耗时。
你可以使用一个链接列表吗?
在链接列表中插入和删除操作是很快的。
然而,链接列表仅允许顺序搜索。



如果你需要访问一个特定客户
id (位于列表末端),那么就要求你访问所有前面的节 点,这也将非常耗时。

二叉搜索树是每个节点都满足以下条件的二叉树:
节点的左子树的所有值小于该节点的值。 ( 左子树的所有节点)


节点的右子树的所有值大于该节点的值。
( 右子树的所有节点)

你可以在二叉搜索树上执行各种操作:
遍历
搜索
插入


删除

要搜索特定值,你需要执行以下步骤:
1. currentNode 指向根节点。
2. 如果 currentNode null
a. 显示 没发现
b. 退出
3. 将需要搜索的值与 currentNode 的值进行比较。取决于比较结果,有三种可能性:
a. 如果该值等于 currentNode 的值:
 i.      显示 发现
 ii.     退出
b. 如果该值小于 currentNode 的值:
 i.      currentNode 指向它的左子节点
 ii.     跳转到步骤 2
c. 如果该值大于 currentNode 的值:
 i.      currentNode 指向它的右子节点
          ii.     跳转到步骤 2



在实施插入操作前,需要首先检查树是否为空。
如果树是空的,新节点将成为根节点。
如果树不是空的,就需要为要插入的新节点找到合适的位置。
这就要求你查找要插入的新节点的父节点。
一旦找到父节点,新节点就作为父节点的左子节点或右子节点被插入。
要找到要插入的新节点的父节点,你需要在树中执行搜索操作。


活动:实现一个二叉搜索树

问题描述:
编写程序来实现在含有字典中单词的二叉搜索树上的插入和遍历操作。
小结

在本章中,你已经学到:
一个树结构就是以非线型数据结构来表示不同数据元素之间的层级关系。
一个二叉树就是一个特定类型的树,其中的每个节点最多只能有 2 个子节点。
二叉树可以使用数组来实施,也可以使用链接列表,取决于需求。
树的遍历操作就是访问树中所有节点一遍。有三种类型的遍历,中序、前序和后 序遍历。
二叉搜索树的特点就是树中节点的左子节点的值永远小于该节点的值,而节点的 右子节点的值永远大于该节点。


向二叉搜索树插入节点需要首先找到节点中适于插入的位置。
需要在从二叉搜索树中删除节点前,检查下列三个条件:
要删除的节点是否为叶子节点
要删除的节点是否只有一个子节点(左或右子节点)
要删除的节点是否含有两个子节点


  
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace BinarySearchTree
  5. {
  6. // 二叉排序树节点类
  7. public class Node
  8. {
  9. public string info;//存放节点的值
  10. public Node lchild;//存放左子树的引用
  11. public Node rchild;//存放右子树的引用
  12. public Node(string info, Node lchild, Node rchild)
  13. {
  14. this.info = info;
  15. this.lchild = lchild;
  16. this.rchild = rchild;
  17. }
  18. }
  19. // 二叉排序树类
  20. public class BinaryTree
  21. {
  22. //存放二叉排序树的根节点
  23. public Node root;
  24. public BinaryTree()
  25. {
  26. root = null;//表示二叉排序树是一棵空树
  27. }
  28. //在查找某个元素或插入某个元素时使用
  29. public void find(string element, ref Node parent, ref Node currentNode)
  30. {
  31. currentNode = root;
  32. parent = null;
  33. /*
  34. 在二叉排序树查找是否有节点的值等于element。
  35. 如果存在,当退出此循环时currentNode就指向这个要查找的节点,
  36. parent指向此节点的父亲节点;
  37. 如果不存在,当退出此循环时currentNode就指null,
  38. parent指向要插入节点的父亲节点;
  39. */
  40. while (currentNode != null)
  41. {
  42. //让父亲指向当前节点
  43. parent = currentNode;
  44. //如果要查找元素的值小于当前节点的值
  45. if (string.Compare(element , currentNode.info)<0)
  46. {
  47. //让当前节点指向当前节点左子树
  48. currentNode = currentNode.lchild;
  49. }
  50. //如果要查找元素的值大于当前节点的值
  51. else if (string.Compare(element, currentNode.info) > 0)
  52. {
  53. //让当前节点指向当前节点右子树
  54. currentNode = currentNode.rchild;
  55. }
  56. else//如果要查找元素的值等于当前节点的值
  57. {
  58. //表明找到,退出循环
  59. break;
  60. }
  61. }
  62. }
  63. //在二叉排序树中插入元素
  64. public void insert(string element)
  65. {
  66. Node tmp;//存放要插入的节点
  67. Node parent = null;//存放要插入节点的父亲节点
  68. Node currentNode = null;//存放当前节点
  69. //第一步,找到要插入元素的父亲节点
  70. find(element, ref parent, ref currentNode);
  71. //第二步,在二叉排序树中插入新节点
  72. //如果要插入元素不在二叉排序树,就可以插入此元素,
  73. //currentNode等于null,parent就指向要插入元素的父亲节点
  74. if (currentNode == null)
  75. {
  76. //创建新节点对象
  77. tmp = new Node(element, null, null);
  78. //如果是空树
  79. if (parent == null)
  80. {
  81. root = tmp;
  82. }
  83. else
  84. {
  85. //如果要插入元素的值小于父亲节点的值
  86. if (string.Compare(element, parent.info) < 0)
  87. {
  88. //将新节点插入到父亲节点的左子树
  89. parent.lchild = tmp;
  90. }
  91. else//如果要插入元素的值大于父亲节点的值
  92. {
  93. //将新节点插入到父亲节点的右子树
  94. parent.rchild = tmp;
  95. }
  96. }
  97. }
  98. //如果要插入元素已经在二叉排序树,currentNode就不等于null
  99. else
  100. {
  101. throw new Exception("二叉树中已经存在值为 " + element +" 的节点");
  102. }
  103. }
  104. //将节点值等于element的节点从二叉排序树中删除
  105. public void delete(string element)
  106. {
  107. Node parent = null, currentNode = null;
  108. //第一步:找到要删除的节点
  109. find(element, ref parent, ref currentNode);
  110. //如果currentNode != null,表明找到要删除的节点
  111. if (currentNode != null)
  112. {
  113. //如果要删除的节点为叶子节点
  114. if ((currentNode.lchild == null) && (currentNode.rchild == null))
  115. {
  116. //如果要删除的节点为根节点
  117. if (currentNode == root)
  118. {
  119. //删除后,就为空树
  120. root = null;
  121. }
  122. //如果要删除的节点是父亲节点的左子树
  123. else if (currentNode == parent.lchild)
  124. {
  125. //将父亲节点的左子树置null
  126. parent.lchild = null;
  127. }
  128. //如果要删除的节点是父亲节点的右子树
  129. else
  130. {
  131. //将父亲节点的右子树置null
  132. parent.rchild = null;
  133. }
  134. }
  135. else if ((currentNode.lchild != null) && (currentNode.rchild != null))//要删除的节点有两个子节点
  136. {
  137. //中序继任节点
  138. Node inorder_suc;
  139. //中序继任节点的父节点
  140. Node inorder_suc_parent;
  141. //让中序继任节点指向要删除节点的右子树
  142. inorder_suc = currentNode.rchild;
  143. //让中序继任节点的父节点指向要删除节点
  144. inorder_suc_parent = currentNode;
  145. //如果中序继任节点不是要删除节点的右儿子节点
  146. if (inorder_suc.lchild != null)
  147. {
  148. //找到中序继任节点,
  149. //说白了就是不断左移的过程,
  150. //直到找到最左边的叶子节点或者只有右子树的节点
  151. while (inorder_suc.lchild != null)
  152. {
  153. //让中序继任节点的父节点指向中序继任节点
  154. inorder_suc_parent = inorder_suc;
  155. //让中序继任节点指向中序继任节点的左子节点
  156. inorder_suc = inorder_suc.lchild;
  157. }
  158. //用中序继任节点的值替换要删除节点的值
  159. currentNode.info = inorder_suc.info;
  160. //删除中序继任节点
  161. inorder_suc_parent.lchild = inorder_suc.rchild;
  162. }
  163. //如果中序继任节点是要删除节点的右儿子节点
  164. else
  165. {
  166. //用中序继任节点的值替换要删除节点的值
  167. currentNode.info = inorder_suc.info;
  168. //删除中序继任节点
  169. inorder_suc_parent.rchild = inorder_suc.rchild;
  170. }
  171. }
  172. else//要删除的节点只有一个子节点
  173. {
  174. Node child;//要删除节点的子节点
  175. //如果要删除的节点只有左子树
  176. if (currentNode.lchild != null)
  177. {
  178. //将要删除节点的左子树赋给child
  179. child = currentNode.lchild;
  180. }
  181. //如果要删除的节点只有右子树
  182. else
  183. {
  184. //将要删除节点的右子树赋给child
  185. child = currentNode.rchild;
  186. }
  187. //如果要删除的节点为父节点的左子节点
  188. if (currentNode == parent.lchild)
  189. {
  190. //让父节点左子节点引用指向child
  191. parent.lchild = child;
  192. }
  193. //如果要删除的节点为父节点的右子节点
  194. else
  195. {
  196. //让父节点右子节点引用指向child
  197. parent.rchild = child;
  198. }
  199. }
  200. }
  201. //如果currentNode == null,表明没有找到要删除的节点
  202. else
  203. {
  204. throw new Exception("没有找到要删除的节点");
  205. }
  206. }
  207. //中序遍历,输入参数为要遍历树的根节点
  208. public void inorder(Node ptr)
  209. {
  210. if (root == null)
  211. {
  212. Console.WriteLine("tree is empty");
  213. }
  214. if(ptr != null)
  215. {
  216. //中序遍历左子树
  217. inorder(ptr.lchild);
  218. //访问根节点的值
  219. Console.Write(ptr.info + " ");
  220. //中序遍历右子树
  221. inorder(ptr.rchild);
  222. }
  223. }
  224. //先序遍历,输入参数为要遍历树的根节点
  225. public void preorder(Node ptr)
  226. {
  227. if (root == null)
  228. {
  229. Console.WriteLine("tree is empty");
  230. }
  231. if (ptr != null)
  232. {
  233. //访问根节点的值
  234. Console.Write(ptr.info + " ");
  235. //先序遍历左子树
  236. preorder(ptr.lchild);
  237. //先序遍历右子树
  238. preorder(ptr.rchild);
  239. }
  240. }
  241. //后序遍历,输入参数为要遍历树的根节点
  242. public void postorder(Node ptr)
  243. {
  244. if (root == null)
  245. {
  246. Console.WriteLine("tree is empty");
  247. }
  248. if (ptr != null)
  249. {
  250. //后序遍历左子树
  251. postorder(ptr.lchild);
  252. //后序遍历右子树
  253. postorder(ptr.rchild);
  254. //访问根节点的值
  255. Console.Write(ptr.info + " ");
  256. }
  257. }
  258. }
  259. }



  
  1. using System;
  2. using System.Text;
  3. namespace BinarySearchTree
  4. {
  5. /* A Node class consists of three things, the information, reference to the
  6. right child, and reference to the left child. */
  7. class Node
  8. {
  9. public string info;
  10. public Node lchild;
  11. public Node rchild;
  12. public Node(string i, Node l, Node r) /* Constructor for the Node class */
  13. {
  14. info = i;
  15. lchild = l;
  16. rchild = r;
  17. }
  18. }
  19. class BinaryTree
  20. {
  21. public Node ROOT;
  22. public BinaryTree()
  23. {
  24. ROOT = null; /* Initializing ROOT to null */
  25. }
  26. public void insert(string element) /* Inserts a Node in the Binary Search Tree */
  27. {
  28. Node tmp, parent = null, currentNode = null;
  29. find(element, ref parent, ref currentNode);
  30. if (currentNode != null) /* Checks if the node to be inserted is already present or not */
  31. {
  32. Console.WriteLine("Duplicates words not allowed");
  33. return;
  34. }
  35. else /* If the specified Node is not present */
  36. {
  37. tmp = new Node(element, null, null); /* creates a Node */
  38. if (parent == null) /* If the tree is empty */
  39. ROOT = tmp;
  40. else
  41. if (String.Compare(element,parent.info) < 0)
  42. parent.lchild = tmp;
  43. else
  44. parent.rchild = tmp;
  45. }
  46. }
  47. public void find(string element, ref Node parent, ref Node currentNode)
  48. {
  49. /* This function finds the currentNode of the specified Node as well as the
  50. currentNode of its parent. */
  51. currentNode = ROOT;
  52. parent = null;
  53. while ((currentNode != null) && (currentNode.info != element))
  54. {
  55. parent = currentNode;
  56. if (String.Compare(element,currentNode.info)<0)
  57. currentNode = currentNode.lchild;
  58. else
  59. currentNode = currentNode.rchild;
  60. }
  61. }
  62. public void inorder(Node ptr) /* Performs the inorder traversal of the tree */
  63. {
  64. if (ROOT == null)
  65. {
  66. Console.WriteLine("Tree is empty");
  67. return;
  68. }
  69. if (ptr != null)
  70. {
  71. inorder(ptr.lchild);
  72. Console.Write(ptr.info + " ");
  73. inorder(ptr.rchild);
  74. }
  75. }
  76. public void preorder(Node ptr) /* Performs the preorder traversal of the tree */
  77. {
  78. if (ROOT == null)
  79. {
  80. Console.WriteLine("Tree is empty");
  81. return;
  82. }
  83. if (ptr != null)
  84. {
  85. Console.Write(ptr.info + " ");
  86. preorder(ptr.lchild);
  87. preorder(ptr.rchild);
  88. }
  89. }
  90. public void postorder(Node ptr) /* Performs the postorder traversal of the tree */
  91. {
  92. if (ROOT == null)
  93. {
  94. Console.WriteLine("Tree is empty");
  95. return;
  96. }
  97. if (ptr != null)
  98. {
  99. postorder(ptr.lchild);
  100. postorder(ptr.rchild);
  101. Console.Write(ptr.info + " ");
  102. }
  103. }
  104. public void remove() /* Deletes the specified Node from the tree */
  105. {
  106. if (ROOT == null) /* Checks whether the tree is empty */
  107. {
  108. Console.WriteLine("Tree is empty");
  109. return;
  110. }
  111. Node parent = null, currentNode = null;
  112. string element;
  113. Console.Write("Enter the word to be deleted: ");
  114. element = Console.ReadLine();
  115. find(element, ref parent, ref currentNode); /* Finds the currentNode of the Node and its parent */
  116. if (currentNode == null)
  117. {
  118. Console.WriteLine("\nWord not found in the dictionary");
  119. return;
  120. }
  121. /* Depending upon the status of the child nodes, the lines of code below
  122. call the appropriate function for performing the deletion of the specified
  123. node from the tree. */
  124. if (currentNode.lchild == null && currentNode.rchild == null)
  125. case_1(ref parent, ref currentNode);
  126. else if (currentNode.lchild != null && currentNode.rchild == null)
  127. case_2(ref parent, ref currentNode);
  128. else if (currentNode.lchild == null && currentNode.rchild != null)
  129. case_2(ref parent, ref currentNode);
  130. else
  131. case_3(ref parent, ref currentNode);
  132. }
  133. public void case_1(ref Node parent, ref Node currentNode) /* This function is invoked if the Node to be deleted is the leaf Node */
  134. {
  135. if (parent == null)
  136. ROOT = null;
  137. else
  138. {
  139. if (currentNode == parent.lchild)
  140. parent.lchild = null;
  141. else
  142. parent.rchild = null;
  143. }
  144. }
  145. public void case_2(ref Node parent, ref Node currentNode) /* This function is invoked if the node to be deleted has one child (left or right) */
  146. {
  147. Node child;
  148. if (currentNode.lchild != null)
  149. child = currentNode.lchild;
  150. else
  151. child = currentNode.rchild;
  152. if (parent == null)
  153. ROOT = child;
  154. else
  155. if (currentNode == parent.lchild)
  156. parent.lchild = child;
  157. else
  158. parent.rchild = child;
  159. }
  160. public void case_3(ref Node parent, ref Node currentNode) /* This function is invoked when the Node to be deleted has two children */
  161. {
  162. Node inorder_suc, inorder_parent;
  163. inorder_parent = currentNode;
  164. inorder_suc = currentNode.rchild;
  165. while (inorder_suc.lchild != null)
  166. {
  167. inorder_parent = inorder_suc;
  168. inorder_suc = inorder_suc.lchild;
  169. }
  170. currentNode.info = inorder_suc.info;
  171. if (inorder_suc.lchild == null && inorder_suc.rchild == null)
  172. case_1(ref inorder_parent, ref inorder_suc);
  173. else
  174. case_2(ref inorder_parent, ref inorder_suc);
  175. }
  176. static void Main(string[] args)
  177. {
  178. BinaryTree b = new BinaryTree();
  179. while (true)
  180. {
  181. Console.WriteLine("\nMenu");
  182. Console.WriteLine("1. Implement insert operation");
  183. Console.WriteLine("2. Perform inorder traversal");
  184. Console.WriteLine("3. Perform preorder traversal");
  185. Console.WriteLine("4. Perform postorder traversal");
  186. Console.WriteLine("5. Implement delete operation");
  187. Console.WriteLine("6. Exit");
  188. Console.Write("\nEnter your choice (1-6): ");
  189. char ch = Convert.ToChar(Console.ReadLine());
  190. Console.WriteLine();
  191. switch (ch)
  192. {
  193. case '1':
  194. {
  195. Console.Write("Enter a word: ");
  196. string word = Console.ReadLine();
  197. b.insert(word);
  198. }
  199. break;
  200. case '2':
  201. {
  202. b.inorder(b.ROOT);
  203. }
  204. break;
  205. case '3':
  206. {
  207. b.preorder(b.ROOT);
  208. }
  209. break;
  210. case '4':
  211. {
  212. b.postorder(b.ROOT);
  213. }
  214. break;
  215. case '5':
  216. {
  217. b.remove();
  218. }
  219. break;
  220. case '6':
  221. return;
  222. default:
  223. {
  224. Console.WriteLine("Invalid option");
  225. break;
  226. }
  227. }
  228. }
  229. }
  230. }
  231. }


文章来源: aaaedu.blog.csdn.net,作者:tea_year,版权归原作者所有,如需转载,请联系作者。

原文链接:aaaedu.blog.csdn.net/article/details/51660826

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。