当前位置:   article > 正文

Java“树结构TreeNode”用法详解,二叉树用法实现代码!!!_java treenode

java treenode

一、TreeNode用法

在Java中,TreeNode通常用于表示树结构中的节点。在树结构中,每个节点可以有零个或多个子节点,而TreeNode就是这个树结构中的一个节点。通常,树结构是通过链式结构实现的,每个节点有指向其子节点的引用。

下面是一个简单的示例,展示了如何定义一个简单的TreeNode类以及如何使用它:

  1. // TreeNode 类表示二叉树中的一个节点
  2. class TreeNode {
  3. int val; // 节点的值
  4. TreeNode left; // 左子节点
  5. TreeNode right; // 右子节点
  6. // 构造函数
  7. TreeNode(int x) {
  8. val = x;
  9. }
  10. }
  11. public class BinaryTreeExample {
  12. // 二叉树的根节点
  13. private TreeNode root;
  14. // 构造函数
  15. public BinaryTreeExample() {
  16. root = null;
  17. }
  18. // 插入节点
  19. public void insert(int value) {
  20. root = insertRec(root, value);
  21. }
  22. // 递归方法插入节点
  23. private TreeNode insertRec(TreeNode root, int value) {
  24. // 如果树为空,则创建一个新节点作为根节点
  25. if (root == null) {
  26. root = new TreeNode(value);
  27. return root;
  28. }
  29. // 否则,向左或向右递归地插入节点
  30. if (value < root.val) {
  31. root.left = insertRec(root.left, value);
  32. } else if (value > root.val) {
  33. root.right = insertRec(root.right, value);
  34. }
  35. // 返回根节点
  36. return root;
  37. }
  38. public static void main(String[] args) {
  39. BinaryTreeExample tree = new BinaryTreeExample();
  40. // 插入节点
  41. tree.insert(50);
  42. tree.insert(30);
  43. tree.insert(20);
  44. tree.insert(40);
  45. tree.insert(70);
  46. tree.insert(60);
  47. tree.insert(80);
  48. }
  49. }

在这个示例中,我们定义了一个 BinaryTreeExample 类来表示一个二叉排序树,其中包含了 TreeNode 类来表示二叉树的节点。我们实现了插入节点的方法 insert()。然后,在 main 方法中创建了一个二叉树实例,并插入了一些节点。

向二叉搜索树中插入节点的递归方法 insertRec()理解过程

首先,让我们假设有一个空树,然后开始向树中插入节点。我们将以插入值为50、30、20、40、70、60、80的顺序进行演示。

  1. 插入节点 50:由于树为空,因此将节点 50 插入为根节点。

    50
  2. 插入节点 30:因为根节点的值为 50,且 30 小于 50,所以我们将节点 30 插入根节点的左子树。

    1. 50
    2. /
    3. 30
  3. 插入节点 20:因为根节点的值为 50,且 20 小于 50,所以我们继续向左子树插入节点 20小于30,则在30的左子树插入节点20。

    1. 50
    2. /
    3. 30
    4. /
    5. 20
  4. 插入节点 40:因为根节点的值为 50,且 40 小于 50,所以我们向50的左子树插入,40>30故在30的右子树插入节点 40。

    1. 50
    2. /
    3. 30
    4. / \
    5. 20 40
  5. 插入节点 70:因为根节点的值为 50,且 70 大于 50,所以我们将节点 70 插入根节点的右子树。

    1. 50
    2. / \
    3. 30 70
    4. / \
    5. 20 40
  6. 插入节点 60:因为根节点的值为 50,且 60 大于50小于 70,所以我们向右子树的左子树插入节点 60。

    1. 50
    2. / \
    3. 30 70
    4. / \ /
    5. 20 40 60
  7. 插入节点 80:因为根节点的值为 50,且 80 大于 70,所以我们继续向右子树插入节点 80。

    1. 50
    2. / \
    3. 30 70
    4. / \ / \
    5. 20 40 60 80

注意啊!!!树结构基本都要用到递归 ,所以一定要好好理解递归算法。

二、二叉树的先,中,后序遍历

  1. // TreeNode 类表示二叉树中的一个节点
  2. class TreeNode {
  3. int val; // 节点的值
  4. TreeNode left; // 左子节点
  5. TreeNode right; // 右子节点
  6. // 构造函数
  7. TreeNode(int x) {
  8. val = x;
  9. }
  10. }
  11. public class BinaryTreeExample {
  12. // 二叉树的根节点
  13. private TreeNode root;
  14. // 构造函数
  15. public BinaryTreeExample() {
  16. root = null;
  17. }
  18. // 插入节点
  19. public void insert(int value) {
  20. root = insertRec(root, value);
  21. }
  22. // 递归方法插入节点
  23. private TreeNode insertRec(TreeNode root, int value) {
  24. // 如果树为空,则创建一个新节点作为根节点
  25. if (root == null) {
  26. root = new TreeNode(value);
  27. return root;
  28. }
  29. // 否则,向左或向右递归地插入节点
  30. if (value < root.val) {
  31. root.left = insertRec(root.left, value);
  32. } else if (value > root.val) {
  33. root.right = insertRec(root.right, value);
  34. }
  35. // 返回根节点
  36. return root;
  37. }
  38. // 先序遍历二叉树
  39. public void firstorderTraversal(TreeNode root) {
  40. if (root != null) {
  41. System.out.print(root.val + " ");
  42. inorderTraversal(root.left);
  43. inorderTraversal(root.right);
  44. }
  45. }
  46. // 中序遍历二叉树
  47. public void inorderTraversal(TreeNode root) {
  48. if (root != null) {
  49. inorderTraversal(root.left);
  50. System.out.print(root.val + " ");
  51. inorderTraversal(root.right);
  52. }
  53. }
  54. // 后序遍历二叉树
  55. public void postorderTraversal(TreeNode root) {
  56. if (root != null) {
  57. inorderTraversal(root.left);
  58. inorderTraversal(root.right);
  59. System.out.print(root.val + " ");
  60. }
  61. }
  62. public static void main(String[] args) {
  63. BinaryTreeExample tree = new BinaryTreeExample();
  64. // 插入节点
  65. tree.insert(50);
  66. tree.insert(30);
  67. tree.insert(20);
  68. tree.insert(40);
  69. tree.insert(70);
  70. tree.insert(60);
  71. tree.insert(80);
  72. // 先序遍历二叉树
  73. System.out.print("二叉树的先序遍历结果:");
  74. tree.firstorderTraversal(tree.root);
  75. System.out.println();
  76. // 中序遍历二叉树
  77. System.out.print("二叉树的中序遍历结果:");
  78. tree.inorderTraversal(tree.root);
  79. System.out.println();
  80. // 后序遍历二叉树
  81. System.out.print("二叉树的后序遍历结果:");
  82. tree.postorderTraversal(tree.root);
  83. System.out.println();
  84. }
  85. }

三、二叉树层序遍历

层序遍历是一种广度优先搜索(BFS)的方法,它从根节点开始逐层遍历二叉树,先遍历完一层节点,再遍历下一层节点,直到遍历完整棵树。在层序遍历中,我们通常使用队列来辅助实现。

关于在Java中如何使用队列,待我更新一篇…… (可关注我主页,如果我忘了踢踢我~)

  1. import java.util.LinkedList;
  2. import java.util.Queue;
  3. class TreeNode {
  4. int val;
  5. TreeNode left;
  6. TreeNode right;
  7. // 构造函数
  8. public TreeNode(int val) {
  9. this.val = val;
  10. }
  11. }
  12. public class BinaryTreeExample {
  13. // 二叉树的根节点
  14. private TreeNode root;
  15. // 构造函数
  16. public BinaryTreeExample() {
  17. root = null;
  18. }
  19. // 插入节点
  20. public void insert(int value) {
  21. root = insertRec(root, value);
  22. }
  23. // 递归方法插入节点
  24. private TreeNode insertRec(TreeNode root, int value) {
  25. // 如果树为空,则创建一个新节点作为根节点
  26. if (root == null) {
  27. root = new TreeNode(value);
  28. return root;
  29. }
  30. // 否则,向左或向右递归地插入节点
  31. if (value < root.val) {
  32. root.left = insertRec(root.left, value);
  33. } else if (value > root.val) {
  34. root.right = insertRec(root.right, value);
  35. }
  36. // 返回根节点
  37. return root;
  38. }
  39. // 层序遍历二叉树
  40. public void levelOrderTraversal(TreeNode root) {
  41. if (root == null)
  42. return;
  43. // 创建一个队列用于辅助层序遍历
  44. Queue<TreeNode> queue = new LinkedList<>();
  45. queue.offer(root);
  46. while (!queue.isEmpty()) {
  47. TreeNode node = queue.poll();
  48. System.out.print(node.val + " ");
  49. if (node.left != null)
  50. queue.offer(node.left);
  51. if (node.right != null)
  52. queue.offer(node.right);
  53. }
  54. }
  55. public static void main(String[] args) {
  56. BinaryTreeExample tree = new BinaryTreeExample();
  57. // 插入节点
  58. tree.insert(50);
  59. tree.insert(30);
  60. tree.insert(20);
  61. tree.insert(40);
  62. tree.insert(70);
  63. tree.insert(60);
  64. tree.insert(80);
  65. // 层序遍历二叉树
  66. System.out.println("二叉树的层序遍历结果:");
  67. tree.levelOrderTraversal(tree.root);
  68. }
  69. }

四、根据所给遍历顺序构造二叉树

如果给出二叉树的先序遍历和中序遍历或者给出二叉树的后序遍历和中序遍历都能唯一的确定一颗二叉树,但是若是给出先序遍历和后序遍历则无法唯一的确定一颗二叉树。

以下示例是根据先序遍历和中序遍历构造的二叉树:

  1. import java.util.HashMap;
  2. class TreeNode {
  3. int val;
  4. TreeNode left;
  5. TreeNode right;
  6. // 构造函数
  7. public TreeNode(int val) {
  8. this.val = val;
  9. }
  10. }
  11. public class BinaryTreeBuilder {
  12. // 构建二叉树
  13. public TreeNode buildTree(int[] preorder, int[] inorder) {
  14. // 使用 HashMap 存储中序遍历结果中每个节点的索引
  15. HashMap<Integer, Integer> map = new HashMap<>();
  16. for (int i = 0; i < inorder.length; i++) {
  17. map.put(inorder[i], i);
  18. }
  19. // 调用递归函数构建二叉树
  20. return buildTreeHelper(preorder, 0, preorder.length - 1, inorder, 0, inorder.length - 1, map);
  21. }
  22. // 递归函数构建二叉树
  23. private TreeNode buildTreeHelper(int[] preorder, int preStart, int preEnd, int[] inorder, int inStart, int inEnd, HashMap<Integer, Integer> map) {
  24. // 如果先序遍历的起始索引大于结束索引,则表示子树为空,返回 null
  25. if (preStart > preEnd) {
  26. return null;
  27. }
  28. // 获取根节点的值
  29. int rootVal = preorder[preStart];
  30. TreeNode root = new TreeNode(rootVal);
  31. // 获取根节点在中序遍历结果中的位置
  32. int index = map.get(rootVal);
  33. // 计算左子树的长度
  34. int leftTreeSize = index - inStart;
  35. // 递归构建左子树和右子树
  36. root.left = buildTreeHelper(preorder, preStart + 1, preStart + leftTreeSize, inorder, inStart, index - 1, map);
  37. root.right = buildTreeHelper(preorder, preStart + leftTreeSize + 1, preEnd, inorder, index + 1, inEnd, map);
  38. return root;
  39. }
  40. // 中序遍历二叉树(用于验证结果)
  41. public void inorderTraversal(TreeNode root) {
  42. if (root != null) {
  43. inorderTraversal(root.left);
  44. System.out.print(root.val + " ");
  45. inorderTraversal(root.right);
  46. }
  47. }
  48. public static void main(String[] args) {
  49. int[] preorder = {3, 9, 20, 15, 7};
  50. int[] inorder = {9, 3, 15, 20, 7};
  51. BinaryTreeBuilder builder = new BinaryTreeBuilder();
  52. TreeNode root = builder.buildTree(preorder, inorder);
  53. System.out.println("构建的二叉树中序遍历结果:");
  54. builder.inorderTraversal(root);
  55. }
  56. }

 以下示例是根据后序遍历和中序遍历构造的二叉树:

  1. import java.util.HashMap;
  2. class TreeNode {
  3. int val;
  4. TreeNode left;
  5. TreeNode right;
  6. // 构造函数
  7. public TreeNode(int val) {
  8. this.val = val;
  9. }
  10. }
  11. public class ConstructBinaryTree {
  12. // 构造二叉树
  13. public TreeNode buildTree(int[] inorder, int[] postorder) {
  14. // 使用HashMap存储中序遍历结果中每个节点的索引
  15. HashMap<Integer, Integer> map = new HashMap<>();
  16. for (int i = 0; i < inorder.length; i++) {
  17. map.put(inorder[i], i);
  18. }
  19. // 调用递归函数构建二叉树
  20. return buildTreeHelper(inorder, 0, inorder.length - 1, postorder, 0, postorder.length - 1, map);
  21. }
  22. // 递归函数构建二叉树
  23. private TreeNode buildTreeHelper(int[] inorder, int inStart, int inEnd, int[] postorder, int postStart, int postEnd, HashMap<Integer, Integer> map) {
  24. // 如果中序遍历的起始索引大于结束索引,则表示子树为空,返回 null
  25. if (inStart > inEnd || postStart > postEnd) {
  26. return null;
  27. }
  28. // 获取根节点的值
  29. int rootVal = postorder[postEnd];
  30. TreeNode root = new TreeNode(rootVal);
  31. // 获取根节点在中序遍历结果中的位置
  32. int index = map.get(rootVal);
  33. // 递归构建左子树和右子树
  34. root.left = buildTreeHelper(inorder, inStart, index - 1, postorder, postStart, postStart + index - inStart - 1, map);
  35. root.right = buildTreeHelper(inorder, index + 1, inEnd, postorder, postStart + index - inStart, postEnd - 1, map);
  36. return root;
  37. }
  38. // 中序遍历二叉树(用于验证)
  39. public void inorderTraversal(TreeNode root) {
  40. if (root != null) {
  41. inorderTraversal(root.left);
  42. System.out.print(root.val + " ");
  43. inorderTraversal(root.right);
  44. }
  45. }
  46. public static void main(String[] args) {
  47. ConstructBinaryTree solution = new ConstructBinaryTree();
  48. int[] inorder = {4, 2, 5, 1, 3};
  49. int[] postorder = {4, 5, 2, 3, 1};
  50. // 构建二叉树
  51. TreeNode root = solution.buildTree(inorder, postorder);
  52. // 验证中序遍历结果
  53. System.out.println("中序遍历结果:");
  54. solution.inorderTraversal(root);
  55. }
  56. }

五、二叉树找某一节点的父节点

在二叉树中,要找到一个节点的父节点,需要从根节点开始向下遍历,直到找到该节点。具体方法如下:

  1. 从根节点开始,递归地向下遍历二叉树。
  2. 如果当前节点的左子节点或右子节点等于目标节点,则当前节点就是目标节点的父节点。
  3. 如果目标节点不是根节点,并且当前节点不是叶子节点,则继续递归地向下遍历左子树和右子树,直到找到目标节点。

以下是一个示例的 Java 代码,演示了如何找到二叉树中某个节点的父节点:

  1. class TreeNode {
  2. int val;
  3. TreeNode left;
  4. TreeNode right;
  5. // 构造函数
  6. public TreeNode(int val) {
  7. this.val = val;
  8. }
  9. }
  10. public class BinaryTree {
  11. // 找到节点的父节点
  12. public TreeNode findParent(TreeNode root, TreeNode target) {
  13. // 如果根节点为空或者目标节点为根节点,则返回 null
  14. if (root == null || root == target) {
  15. return null;
  16. }
  17. // 如果目标节点是当前节点的左子节点或右子节点,则返回当前节点
  18. if (root.left == target || root.right == target) {
  19. return root;
  20. }
  21. // 递归在左子树中寻找目标节点的父节点
  22. TreeNode leftParent = findParent(root.left, target);
  23. // 如果在左子树中找到了,则直接返回结果
  24. if (leftParent != null) {
  25. return leftParent;
  26. }
  27. // 递归在右子树中寻找目标节点的父节点
  28. TreeNode rightParent = findParent(root.right, target);
  29. // 如果在右子树中找到了,则直接返回结果
  30. if (rightParent != null) {
  31. return rightParent;
  32. }
  33. // 如果左右子树都没有找到,则返回 null
  34. return null;
  35. }
  36. public static void main(String[] args) {
  37. BinaryTree tree = new BinaryTree();
  38. // 构建二叉树
  39. TreeNode root = new TreeNode(1);
  40. root.left = new TreeNode(2);
  41. root.right = new TreeNode(3);
  42. root.left.left = new TreeNode(4);
  43. root.left.right = new TreeNode(5);
  44. root.right.left = new TreeNode(6);
  45. root.right.right = new TreeNode(7);
  46. // 找到目标节点
  47. TreeNode target = root.left.right;
  48. // 找到目标节点的父节点
  49. TreeNode parent = tree.findParent(root, target);
  50. if (parent != null) {
  51. System.out.println("节点 " + target.val + " 的父节点是 " + parent.val);
  52. } else {
  53. System.out.println("节点 " + target.val + " 没有父节点");
  54. }
  55. }
  56. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/512335?site
推荐阅读
相关标签
  

闽ICP备14008679号