1、首先,须要一个节点对象的类。这些对象包括数据。数据代表存储的内容,并且还有指向节点的两个子节点的引用

  1. class Node {
  2. public int iData;
  3. public double dData;
  4. public Node leftChild;
  5. public Node rightChild;
  6. public void displayNode() {
  7. System.out.print("{");
  8. System.out.print(iData);
  9. System.out.print(",");
  10. System.out.print(dData);
  11. System.out.print("}");
  12. }
  13. }

2、插入一个节点

从根開始查找一个对应的节点,它将是新节点的父节点。

当父节点找到了,新节点就能够连接到它的左子节点或右子节点处。这取决于新节点的值是比父节点的值大还是小。

以下是insert()方法代码:

  1. public void insert(int id, double dd) {
  2. Node newNode = new Node();
  3. newNode.iData = id;
  4. newNode.dData = dd;
  5. if(root == null)
  6. root = newNode;
  7. else {
  8. Node current = root;
  9. Node parent;
  10. while(true) {
  11. parent = current;
  12. if(id < current.iData) {
  13. current = current.leftChild;
  14. if(current == null) {
  15. parent.leftChild = newNode;
  16. return;
  17. }
  18. } else {
  19. current = current.rightChild;
  20. if(current == null) {
  21. parent.rightChild = newNode;
  22. return;
  23. }
  24. }
  25. } // end while
  26. } // end else
  27. }

这里用一个新的变量parent(current的父节点),来存储遇到的最后一个不是null的节点。必须这样做,由于current在查找的过程中会变成null,才干发现它查过的上一个节点没有一个相应的子节点。

假设不存储parent。就会失去插入新节点的位置。

3、查找一个节点

  1. public Node find(int key) {
  2. // 如果树非空
  3. Node current = root;
  4. while(current.iData != key) {
  5. if(key < current.iData)
  6. current = current.leftChild;
  7. else
  8. current = current.rightChild;
  9. if(current == null)
  10. return null;
  11. }
  12. return current;
  13. }

找到节点:假设while循环不满足条件,从循环的末端退出来。current的iData字段和key相等,这就找到了该节点。

找不到节点:假设current等于null。在查找序列中找不到下一个子节点,到达序列的末端而没有找到要找的节点。表明了它不存在。返回nulll来指出这个情况。

4、遍历树(前序遍历。中序遍历,后序遍历)

  1. /**
  2. * 前序遍历
  3. * @param localRoot
  4. */
  5. public void preOrder(Node localRoot) {
  6. if(localRoot != null) {
  7. System.out.print(localRoot.iData+" ");
  8. preOrder(localRoot.leftChild);
  9. preOrder(localRoot.rightChild);
  10. }
  11. }
  12.  
  13. /**
  14. * 中序遍历
  15. * @param localRoot
  16. */
  17. public void inOrder(Node localRoot) {
  18. if(localRoot != null) {
  19. preOrder(localRoot.leftChild);
  20. System.out.print(localRoot.iData+" ");
  21. preOrder(localRoot.rightChild);
  22. }
  23. }
  24.  
  25. /**
  26. * 后序遍历
  27. * @param localRoot
  28. */
  29. public void postOrder(Node localRoot) {
  30. if(localRoot != null) {
  31. preOrder(localRoot.leftChild);
  32. preOrder(localRoot.rightChild);
  33. System.out.print(localRoot.iData+" ");
  34. }
  35. }

遍历树的最简单方法使用递归的方法。

用递归的方法遍历整棵树要用一个节点作为參数。初始化这个节点是根。比如中序遍历仅仅须要做三件事:

1)、调用自身来遍历节点的左子树

2)、訪问这个节点

3)、调用自身来遍历节点的右子树。

5、查找最大值和最小值

  1. /**
  2. * 求树中的最小值
  3. * @return
  4. */
  5. public Node minimum() {
  6. Node current;
  7. current = root;
  8. Node last = null;
  9. while(current != null) {
  10. last = current;
  11. current = current.leftChild;
  12. }
  13. return last;
  14. }
  15.  
  16. /**
  17. * 求树中的最大值
  18. * @return
  19. */
  20. public Node maxmum() {
  21. Node current;
  22. current = root;
  23. Node last = null;
  24. while(current != null) {
  25. last = current;
  26. current = current.rightChild;
  27. }
  28. return last;
  29. }

下面是完整測试代码:

  1. package binTree;
  2.  
  3. class Node {
  4. public int iData;
  5. public double dData;
  6. public Node leftChild;
  7. public Node rightChild;
  8. public void displayNode() {
  9. System.out.print("{");
  10. System.out.print(iData);
  11. System.out.print(",");
  12. System.out.print(dData);
  13. System.out.print("}");
  14. }
  15. }
  16.  
  17. class Tree {
  18. private Node root;
  19. public Tree() {
  20. root = null;
  21. }
  22. /**
  23. * 查找节点
  24. * @param key
  25. * @return
  26. */
  27. public Node find(int key) {
  28. // 如果树非空
  29. Node current = root;
  30. while(current.iData != key) {
  31. if(key < current.iData)
  32. current = current.leftChild;
  33. else
  34. current = current.rightChild;
  35. if(current == null)
  36. return null;
  37. }
  38. return current;
  39. }
  40. /**
  41. * 插入节点
  42. * @param id
  43. * @param dd
  44. */
  45. public void insert(int id, double dd) {
  46. Node newNode = new Node();
  47. newNode.iData = id;
  48. newNode.dData = dd;
  49. if(root == null)
  50. root = newNode;
  51. else {
  52. Node current = root;
  53. Node parent;
  54. while(true) {
  55. parent = current;
  56. if(id < current.iData) {
  57. current = current.leftChild;
  58. if(current == null) {
  59. parent.leftChild = newNode;
  60. return;
  61. }
  62. } else {
  63. current = current.rightChild;
  64. if(current == null) {
  65. parent.rightChild = newNode;
  66. return;
  67. }
  68. }
  69. } // end while
  70. } // end else
  71. }
  72. /**
  73. * 前序遍历
  74. * @param localRoot
  75. */
  76. public void preOrder(Node localRoot) {
  77. if(localRoot != null) {
  78. System.out.print(localRoot.iData+" ");
  79. preOrder(localRoot.leftChild);
  80. preOrder(localRoot.rightChild);
  81. }
  82. }
  83.  
  84. /**
  85. * 中序遍历
  86. * @param localRoot
  87. */
  88. public void inOrder(Node localRoot) {
  89. if(localRoot != null) {
  90. preOrder(localRoot.leftChild);
  91. System.out.print(localRoot.iData+" ");
  92. preOrder(localRoot.rightChild);
  93. }
  94. }
  95.  
  96. /**
  97. * 后序遍历
  98. * @param localRoot
  99. */
  100. public void postOrder(Node localRoot) {
  101. if(localRoot != null) {
  102. preOrder(localRoot.leftChild);
  103. preOrder(localRoot.rightChild);
  104. System.out.print(localRoot.iData+" ");
  105. }
  106. }
  107.  
  108. /**
  109. * 求树中的最小值
  110. * @return
  111. */
  112. public Node minimum() {
  113. Node current;
  114. current = root;
  115. Node last = null;
  116. while(current != null) {
  117. last = current;
  118. current = current.leftChild;
  119. }
  120. return last;
  121. }
  122.  
  123. /**
  124. * 求树中的最大值
  125. * @return
  126. */
  127. public Node maxmum() {
  128. Node current;
  129. current = root;
  130. Node last = null;
  131. while(current != null) {
  132. last = current;
  133. current = current.rightChild;
  134. }
  135. return last;
  136. }
  137. }
  138.  
  139. public class TreeApp {
  140. public static void main(String[] args) {
  141. Tree theTree = new Tree();
  142. /**
  143. * 50
  144. * / \
  145. * 25 75
  146. * / \ \
  147. * 12 37 87
  148. * / \ \
  149. * 30 43 93
  150. * \ \
  151. * 33 97
  152. */
  153. theTree.insert(50, 1.5);
  154. theTree.insert(25, 1.2);
  155. theTree.insert(75, 1.7);
  156. theTree.insert(12, 1.5);
  157. theTree.insert(37, 1.2);
  158. theTree.insert(43, 1.7);
  159. theTree.insert(30, 1.5);
  160. theTree.insert(33, 1.2);
  161. theTree.insert(87, 1.7);
  162. theTree.insert(93, 1.5);
  163. theTree.insert(97, 1.5);
  164. System.out.println("插入完成~");
  165.  
  166. //找到root节点
  167. Node nodeRoot = theTree.find(50);
  168. // 中序遍历
  169. theTree.inOrder(nodeRoot);
  170. System.out.println();
  171. // 求最小值
  172. System.out.println("mini:"+ theTree.minimum().iData);
  173. // 求最大值
  174. System.out.println("max:"+ theTree.maxmum().iData);
  175.  
  176. }
  177. }

Java对二叉搜索树进行插入、查找、遍历、最大值和最小值的操作的更多相关文章

  1. Java实现二叉搜索树的插入、删除

    前置知识 二叉树的结构 public class TreeNode { int val; TreeNode left; TreeNode right; TreeNode() { } TreeNode( ...

  2. Java实现二叉搜索树

    原创:转载需注明原创地址 https://www.cnblogs.com/fanerwei222/p/11406176.html 尝试一下用Java实现二叉搜索树/二叉查找树,记录自己的学习历程. 1 ...

  3. 【Java】 剑指offer(33) 二叉搜索树的后序遍历序列

    本文参考自<剑指offer>一书,代码采用Java语言. 更多:<剑指Offer>Java实现合集   题目 输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历的结果.如 ...

  4. 剑指Offer:面试题24——二叉搜索树的后序遍历序列(java实现)

    问题描述: 输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历的结果.如果是则返回true,否则返回false.假设输入的数组的任意两个数字都互不相同. 思路: 1.首先后序遍历的结果是[(左子 ...

  5. 剑指Offer-23.二叉搜索树的后序遍历序列(C++/Java)

    题目: 输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历的结果.如果是则输出Yes,否则输出No.假设输入的数组的任意两个数字都互不相同. 分析: 二叉树的后序遍历也就是先访问左子树,再访问右 ...

  6. 剑指offer23:输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历的结果。输出Yes OR No。

    1 题目描述 输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历的结果.如果是则输出Yes,否则输出No.假设输入的数组的任意两个数字都互不相同. 2 思路和方法 二叉搜索树:二叉查找树(Bin ...

  7. P140、面试题24:二叉搜索树的后序遍历序列

    题目:输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历的结果.如果是则返回true,否则返回false.假设输入的数组的任意两个数字都互不相同. 测试用例: 1)功能测试(输入的后序遍历的序列 ...

  8. [PHP]算法- 判断是否为二叉搜索树的后序遍历序列的PHP实现

    二叉搜索树的后序遍历序列: 输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历的结果.如果是则输出Yes,否则输出No.假设输入的数组的任意两个数字都互不相同. 思路: 1.后序遍历是 左右中 ...

  9. 二叉搜索树的后序遍历序列(python)

    题目描述 输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历的结果.如果是则输出Yes,否则输出No.假设输入的数组的任意两个数字都互不相同. # -*- coding:utf-8 -*- cl ...

随机推荐

  1. 微信小程序商品详情 + 评论功能实现

    这是一个商品展示并能进行评论和答复的功能页面, 遇到的问题有: 分享功能没有办法将json数据写在地址中,只能传id来进行获取 这里必须新加一个状态用来判断是否显示x回复@x,因为我以前的判断这个依据 ...

  2. Python基础数据类型(四) tuple元祖

    元祖tuple(,) 元祖就是不可变的列表 元祖用()表示,元素与元素之间用逗号隔开,数据类型没有限制 tu = ('科比','詹姆斯','乔丹') tu = tuple('123') 小括号中 有一 ...

  3. Vue电商SKU组合算法问题

    前段时间,公司要做“添加商品”业务模块,这也算是电商业务里面的一个难点了. 令我印象最深的不是什么“组合商品”.“关联商品”.“关联单品”,而是商品SKU的组合问题. 这个问题特别有意思,当时虽然大体 ...

  4. 【BZOJ3527】[ZJOI2014] 力(FFT)

    题目: BZOJ3527 分析: FFT应用第一题-- 首先很明显能把\(F_j\)约掉,变成: \[E_j=\sum _{i<j} \frac{q_i}{(i-j)^2}-\sum_{i> ...

  5. 【NOIP2016】DAY1 T2 天天爱跑步

    [NOIP2016]DAY1 T2 天天爱跑步 Description 小c同学认为跑步非常有趣,于是决定制作一款叫做<天天爱跑步>的游戏.?天天爱跑步?是一个养成类游戏,需要玩家每天按时 ...

  6. ACM_百度的面试(单调栈)

    百度的面试 Time Limit: 2000/1000ms (Java/Others) Problem Description: 在一个二维平面,从左到右竖立n根高度分别为:a[1],a[2],... ...

  7. Hadoop Hive概念学习系列之hive里的扩展接口(CLI、Beeline、JDBC)(十六)

    <Spark最佳实战  陈欢>写的这本书,关于此知识点,非常好,在94页. hive里的扩展接口,主要包括CLI(控制命令行接口).Beeline和JDBC等方式访问Hive. CLI和B ...

  8. PHP 在线 编辑 解析

    http://www.w3schools.com/php/default.asp    http://www.w3schools.com/php/showphp.asp?filename=demo_s ...

  9. Razor的使用

    Razor可以识别尖括号,且关键词是@,默认情况下会对输出的html代码进行转义 1.C#代码 用 @ 加 中括号 包起来 @{ ; i < ; i++) { <h3>C#语句块要用 ...

  10. T-SQL查询基础

    今天来带大家了解下在sql server 中的查询机制 使用select语句进行查询 1.查询所有的数据行和列 select * from student 2.查询部分行和列 select scode ...