前言

为什么需要树这种数据结构
1)数组存储方式的分析
优点:通过下标方式访问元素,速度快。对于有序数组,还可使用二分查找提高检索速度。
缺点:如果要检索具体某个值,或者插入值(按一定顺序)会整体移动,效率较低[示意图]
image.png
2)链式存储方式的分析
优点:在一定程度上对数组存储方式有优化(比如:插入一个数值节点,只需要将插入节点,链接到链表中即可,删除效率也很好)。
缺点:在进行检索时,效率仍然较低,比如(检索某个值,需要从头节点开始遍历)【示意图】
image.png
3)树存储方式的分析
能提高数据存储,读取的效率,
比如利用 二叉排序树(Binary Sort Tree),既可以保证数据的检索速度,同时也可以保证数据的插入,删除,修改的速度。
image.png

二叉树

概念

1)树有很多种,每个节点最多只能有两个子节点的一种形式称为二叉树。
2)二叉树的子节点分为左节点和右节点
3)示意图
image.png
4)如果该二叉树的所有叶子节点都在最后一层,并且结点总数=2^n -1, n为层数,则我们称为满二叉树。
image.png
5)如果该二叉树的所有叶子节点都在最后一层或者倒数第二层,而且最后一层的叶子节点在左边连续,倒数第二层的叶子节点在右边连续,我们称为完全二叉树
image.png

遍历说明

使用前序,中序和后序对下面的二叉树进行遍历.
1)前序遍历:先输出父节点,再遍历左子树和右子树
2)中序遍历:先遍历左子树,再输出父节点,再遍历右子树
3)后序遍历:先遍历左子树,再遍历右子树,最后输出父节点
4)小结:看输出父节点的顺序,就确定是前序,中序还是后序

思路

image.png
遍历:
根据id查找:
删除:

代码

  1. package com.sgg.datastructure.tree;
  2. public class HeroNode {
  3. private int no;
  4. private String name;
  5. private HeroNode left; //默认 null
  6. private HeroNode right; //默认 null
  7. public HeroNode(int no, String name) {
  8. this.no = no;
  9. this.name = name;
  10. }
  11. public HeroNode getLeft() {
  12. return left;
  13. }
  14. public void setLeft(HeroNode left) {
  15. this.left = left;
  16. }
  17. public HeroNode getRight() {
  18. return right;
  19. }
  20. public void setRight(HeroNode right) {
  21. this.right = right;
  22. }
  23. @Override
  24. public String toString() {
  25. return "HeroNode{" +
  26. "no=" + no +
  27. ", name='" + name + '\'' +
  28. '}';
  29. }
  30. //自己,左,右
  31. public void preOrder() {
  32. System.out.println(this);
  33. if (getLeft() != null) {
  34. getLeft().preOrder();
  35. }
  36. if (getRight() != null) {
  37. getRight().preOrder();
  38. }
  39. }
  40. //左,自己,右
  41. public void infixOrder() {
  42. if (getLeft() != null) {
  43. getLeft().infixOrder();
  44. }
  45. System.out.println(this);
  46. if (getRight() != null) {
  47. getRight().infixOrder();
  48. }
  49. }
  50. //左,右,自己
  51. public void postOrder() {
  52. if (getLeft() != null) {
  53. getLeft().postOrder();
  54. }
  55. if (getRight() != null) {
  56. getRight().postOrder();
  57. }
  58. System.out.println(this);
  59. }
  60. //查找:前序,中序,后序
  61. public HeroNode searchByPre(int no) {
  62. if (this.no == no) {
  63. return this;
  64. }
  65. HeroNode result = null;
  66. if (this.left != null) {
  67. result = left.searchByPre(no);
  68. }
  69. if (result != null) {
  70. return result;
  71. }
  72. if (this.right != null) {
  73. result = right.searchByPre(no);
  74. }
  75. return result;
  76. }
  77. public HeroNode searchByMiddle(int no) {
  78. HeroNode result = null;
  79. if (this.left != null) {
  80. result = left.searchByMiddle(no);
  81. }
  82. if (result != null) {
  83. return result;
  84. }
  85. if (this.no == no) {
  86. return this;
  87. }
  88. if (this.right != null) {
  89. result = right.searchByMiddle(no);
  90. }
  91. return result;
  92. }
  93. public HeroNode searchByPost(int no) {
  94. HeroNode result = null;
  95. if (this.left != null) {
  96. result = left.searchByPost(no);
  97. }
  98. if (result != null) {
  99. return result;
  100. }
  101. if (this.right != null) {
  102. result = right.searchByPost(no);
  103. }
  104. if (result != null) {
  105. return result;
  106. }
  107. if (this.no == no) {
  108. return this;
  109. }
  110. return null;
  111. }
  112. //删除
  113. public void delete(int no) {
  114. if (this.left != null && this.left.no == no) {
  115. this.left = null;
  116. return;
  117. }
  118. if (this.right != null && this.right.no == no) {
  119. this.right = null;
  120. return;
  121. }
  122. if (this.left != null) {
  123. this.left.delete(no);
  124. }
  125. if (this.right != null) {
  126. this.right.delete(no);
  127. }
  128. }
  129. }
  1. package com.sgg.datastructure.tree;
  2. public class BinaryTree {
  3. private HeroNode root;
  4. public void setRoot(HeroNode root) {
  5. this.root = root;
  6. }
  7. //前序遍历
  8. public void preOrder() {
  9. if (this.root != null) {
  10. this.root.preOrder();
  11. } else {
  12. System.out.println("二叉树为空,无法遍历");
  13. }
  14. }
  15. //中序遍历
  16. public void infixOrder() {
  17. if (this.root != null) {
  18. this.root.infixOrder();
  19. } else {
  20. System.out.println("二叉树为空,无法遍历");
  21. }
  22. }
  23. //后序遍历
  24. public void postOrder() {
  25. if (this.root != null) {
  26. this.root.postOrder();
  27. } else {
  28. System.out.println("二叉树为空,无法遍历");
  29. }
  30. }
  31. public HeroNode searchByPre(int no) {
  32. return this.root.searchByPre(no);
  33. }
  34. public HeroNode searchByMiddle(int no) {
  35. return this.root.searchByMiddle(no);
  36. }
  37. public HeroNode searchByPost(int no) {
  38. return this.root.searchByPost(no);
  39. }
  40. public void delete(int no) {
  41. this.root.delete(no);
  42. }
  43. public static void main(String[] args) {
  44. //先需要创建一颗二叉树
  45. BinaryTree binaryTree = new BinaryTree();
  46. //创建需要的结点
  47. HeroNode root = new HeroNode(1, "宋江");
  48. HeroNode node2 = new HeroNode(2, "吴用");
  49. HeroNode node3 = new HeroNode(3, "卢俊义");
  50. HeroNode node4 = new HeroNode(4, "林冲");
  51. HeroNode node5 = new HeroNode(5, "关胜");
  52. //说明,我们先手动创建该二叉树,后面我们学习递归的方式创建二叉树
  53. root.setLeft(node2);
  54. root.setRight(node3);
  55. node3.setRight(node4);
  56. node3.setLeft(node5);
  57. binaryTree.setRoot(root);
  58. //测试
  59. System.out.println("前序遍历"); // 1,2,3,5,4
  60. binaryTree.preOrder();
  61. //测试
  62. System.out.println("中序遍历");
  63. binaryTree.infixOrder(); // 2,1,5,3,4
  64. //
  65. System.out.println("后序遍历");
  66. binaryTree.postOrder(); // 2,5,4,3,1
  67. }
  68. }

顺序存储二叉树

概念

从数据存储来看,数组存储方式和树的存储方式可以相互转换,即数组可以转换成树,树也可以转换成数组,看右面的示意图
image.png

要求

1)右图的二叉树的结点,要求以数组的方式来存放arr : [1, 2, 3, 4, 5, 6, 6]
2)要求在遍历数组arr时,仍然可以以前序遍历,中序遍历和后序遍历的方式完成结点的遍历

特点

1)顺序二叉树通常只考虑完全二叉树
2)第n个元素的左子节点为2 n + 1
3)第n个元素的右子节点为2
n + 2
4)第n个元素的父节点为(n-1) / 2
5)n :表示二叉树中的第几个元素(按0开始编号如图所示)

代码

  1. package com.sgg.datastructure.tree;
  2. public class ArrayBinaryTree {
  3. public static int[] arr = {1, 2, 3, 4, 5, 6, 7};
  4. public static void main(String[] args) {
  5. // preOrder(); // 1,2,4,5,3,6,7
  6. // middleOrder();//4 2 5 1 6 3 7
  7. postOrder();// 4 5 2 6 7 3 1
  8. }
  9. public static void preOrder() {
  10. preOrder(0);
  11. }
  12. public static void preOrder(int index) {
  13. System.out.println(arr[index]);
  14. if (2 * index + 1 < arr.length) {
  15. preOrder(2 * index + 1);
  16. }
  17. if (2 * index + 2 < arr.length) {
  18. preOrder(2 * index + 2);
  19. }
  20. }
  21. public static void middleOrder() {
  22. middleOrder(0);
  23. }
  24. private static void middleOrder(int index) {
  25. if (2 * index + 1 < arr.length) {
  26. middleOrder(2 * index + 1);
  27. }
  28. System.out.println(arr[index]);
  29. if (2 * index + 2 < arr.length) {
  30. middleOrder(2 * index + 2);
  31. }
  32. }
  33. public static void postOrder() {
  34. postOrder(0);
  35. }
  36. private static void postOrder(int index) {
  37. if (2 * index + 1 < arr.length) {
  38. postOrder(2 * index + 1);
  39. }
  40. if (2 * index + 2 < arr.length) {
  41. postOrder(2 * index + 2);
  42. }
  43. System.out.println(arr[index]);
  44. }
  45. }

线索化二叉树

概念

引入问题

将数列{1, 3, 6, 8, 10, 14}构建成一颗二叉树.n+1=7
image.png
问题分析:
1)当我们对上面的二叉树进行中序遍历时,数列为{8, 3, 10, 1, 14, 6 }
2)但是6, 8, 10, 14这几个节点的 左右指针,并没有完全的利用上.
3)如果我们希望充分的利用 各个节点的左右指针, 让各个节点可以指向自己的前后节点,怎么办?
4)解决方案-线索二叉树

基本介绍

  1. n个结点的二叉链表中含有n+1【公式2n-(n-1)=n+1】 个空指针域。利用二叉链表中的空指针域,存放指向该结点在某种遍历次序下的前驱和后继结点的指针(这种附加的指针称为”线索”)

  2. 这种加上了线索的二叉链表称为线索链表,相应的二叉树称为线索二叉树(Threaded BinaryTree)。根据线索性质的不同,线索二叉树可分为前序线索二叉树、中序线索二叉树和后序线索二叉树三种

  3. 一个结点的前一个结点,称为前驱结点

  4. 一个结点的后一个结点,称为后继结点

    图解

    image.png

    思路

    说明:当线索化二叉树后,Node节点的 属性left和right,有如下情况:
    1)left指向的是左子树,也可能是指向的前驱节点.比如 ① 节点left指向的左子树,而 ⑩ 节点的left指向的就是前驱节点.
    2)right指向的是右子树,也可能是指向后继节点,比如 ① 节点right指向的是右子树,而⑩ 节点的right指向的是后继节点

    代码

    ```java package com.sgg.datastructure.tree;

// 中序的 public class ThreadedBinaryTree { private HeroNode root; private HeroNode pre;

  1. public void setRoot(HeroNode root) {
  2. this.root = root;
  3. }
  4. public static void main(String[] args) {
  5. //测试一把中序线索二叉树的功能
  6. HeroNode root = new HeroNode(1, "tom");
  7. HeroNode node2 = new HeroNode(3, "jack");
  8. HeroNode node3 = new HeroNode(6, "smith");
  9. HeroNode node4 = new HeroNode(8, "mary");
  10. HeroNode node5 = new HeroNode(10, "king");
  11. HeroNode node6 = new HeroNode(14, "dim");
  12. //二叉树,后面我们要递归创建, 现在简单处理使用手动创建
  13. root.setLeft(node2);
  14. root.setRight(node3);
  15. node2.setLeft(node4);
  16. node2.setRight(node5);
  17. node3.setLeft(node6);
  18. ThreadedBinaryTree threadedBinaryTree = new ThreadedBinaryTree();
  19. threadedBinaryTree.setRoot(root);
  20. threadedBinaryTree.threadedNodes();
  21. System.out.println(node5.getLeft());
  22. System.out.println(node5.getRight());
  23. System.out.println();
  24. threadedBinaryTree.threadedList();
  25. }
  26. //构建线索化二叉树(中序)
  27. public void threadedNodes() {
  28. threadedNodes(root);
  29. }
  30. public void threadedNodes(HeroNode node) {
  31. if (node == null) {
  32. return;
  33. }
  34. //(一)先线索化左子树
  35. threadedNodes(node.getLeft());
  36. //(二)线索化当前结点[有难度]
  37. if (node.getLeft() == null) {
  38. //让当前结点的左指针指向前驱结点
  39. node.setLeft(pre);
  40. //修改当前结点的左指针的类型,指向前驱结点
  41. node.setLeftType(1);
  42. }
  43. //处理后继结点
  44. if (pre != null && pre.getRight() == null) {
  45. //让前驱结点的右指针指向当前结点
  46. pre.setRight(node);
  47. //修改前驱结点的右指针类型
  48. pre.setRightType(1);
  49. }
  50. //!!! 每处理一个结点后,让当前结点是下一个结点的前驱结点
  51. pre = node;
  52. //(三)线索化右子树
  53. threadedNodes(node.getRight());
  54. }
  55. //遍历线索化二叉树的方法(中序)
  56. public void threadedList() {
  57. //定义一个变量,存储当前遍历的结点,从 root 开始
  58. HeroNode node = root;
  59. while (node != null) {
  60. //循环的找到 leftType == 1 的结点,第一个找到就是 8 结点,后面随着遍历而变化,因为当 leftType==1 时,说明该结点是按照线索化处理后的有效结点
  61. while (node.getLeftType() == 0) {
  62. node = node.getLeft();
  63. }
  64. //打印当前这个结点
  65. System.out.println(node);
  66. //如果当前结点的右指针指向的是后继结点,就一直输出
  67. while (node.getRightType() == 1) {
  68. //获取到当前结点的后继结点
  69. node = node.getRight();
  70. System.out.println(node);
  71. }
  72. //替换这个遍历的结点
  73. node = node.getRight();
  74. }
  75. }

}

```