• 二叉树的遍历与构建问题


    目录

    一、二叉树遍历

    二、从前序与中序遍历序列构造二叉树

    三、从中序遍历与后序遍历序列构造二叉树


    一、二叉树遍历

    编一个程序,读入用户输入的一串先序遍历字符串,根据此字符串建立一个二叉树(以指针方式存储)。 例如如下的先序遍历字符串: ABC##DE#G##F### 其中“#”表示的是空格,空格字符代表空树。建立起此二叉树以后,再对二叉树进行中序遍历,输出遍历结果。

     通过实例1给定的字符串(先序遍历)能推出该树如下。它的中序遍历就是CDEGDFA。

    创建两个方法,一个方法叫inorder用来中序遍历,并且输出中序遍历的结果。另一个方法叫preOrderBuild传入一个前序遍历的字符串str,就能根据前序遍历的方式构造出一颗二叉树并返回构造后的树根节点。

    然后在主方法中传入一颗树的根节点按照题目要求进行输出,所有节点在一行内输出TreeNode root = preorderBuild(str);然后调用inorder(root)输出树的中序遍历,然后设置index = 0,再继续下一次的遍历使用。

    在preOrderBuild方法前创建一个index变量,用它来记录传入到字符串的第几个位置,创建一个char类型的值cur来存储str在index位置上的值,当cur==‘#’,则证明该位置在树中是空的,index++然后return null即可。如下图中的第一个cur就不是#,所以创建一个TreeNode类型的root传入该值。然后将index++,root.left = preOrderBuild(s),进入下一层递归。

     获得当前位置的将结果存储为root,然后index++,root.left = preOrderBuild(s),进入下一层递归。

    然后获得当前位置的将结果存储为root,然后index++,root.left = preOrderBuild(s),进入下一层递归。

     然后就遇到了第一个#号,则直接返回null值,所以C的左子树就是空的,然后root.right = preOrderBuild(s),进入下一层递归。

    遇到了#号,返回null值,所以C的右子树也是空的,那么直接返回这颗树,那么B的左子树就是C,然后root.right = preOrderBuild(s),继续递归。

     后面的递归图如下:

     

     

     

     

     到这儿位置就把完整的二叉树形成了。

    1. class TreeNode{
    2. char val;
    3. TreeNode left;
    4. TreeNode right;
    5. public TreeNode(char val){
    6. this.val = val;
    7. }
    8. }
    9. public class Main {
    10. public static void main(String[] args) {
    11. Scanner in = new Scanner(System.in);
    12. while (in.hasNextLine()) {
    13. String s = in.nextLine();
    14. TreeNode root = preOrderBuild(s);
    15. inorder(root);
    16. index = 0;
    17. System.out.println();
    18. }
    19. }
    20. public static void inorder(TreeNode root) {
    21. if(root==null){
    22. return ;
    23. }
    24. inorder(root.left);
    25. System.out.print(root.val+" ");
    26. inorder(root.right);
    27. }
    28. static int index = 0;
    29. public static TreeNode preOrderBuild(String s) {
    30. char cur = s.charAt(index);
    31. if(cur=='#'){
    32. index++;
    33. return null;
    34. }
    35. TreeNode root = new TreeNode(cur);
    36. index++;
    37. root.left = preOrderBuild(s);
    38. root.right = preOrderBuild(s);
    39. return root;
    40. }
    41. }

    二、从前序与中序遍历序列构造二叉树

    给定两个整数数组 preorder 和 inorder ,其中 preorder 是二叉树的先序遍历, inorder 是同一棵树的中序遍历,请构造二叉树并返回其根节点。

     前序遍历的第一个结果一定是当前树的根节点,中序遍历的左子树结果在树根的左侧,右子树结果在当前树根的右侧。

    不断从前序遍历中取出树根节点,然后去中序遍历中查找当前树根所处的位置pos,他之前的是他的左子树,之后是右子树结点。

    创建一个方法buildTreeHelper中借助前序遍历,在中序遍历的[left..right]还原二叉树,返回构造后的树根节点,有两个特殊情况,当left>right,此时区间为空,一个元素都没有直接返回null。当index == inorder.length,此时将整个前序遍历的所有元素全都访问完毕,构造结束,直接返回null。

    在buildTree方法中直接返回buildTreeHelper中得到的值即可,传入两个数组、0和inorder的长度-1。

    还需要创建一个find方法,即在当前中序遍历结果集中寻找val对应的位置下标,然后返回下标,就证明他之前的元素都是该位置元素的左子树,后面的都是右子树。

    在buildTreeHelper方法中,创建一个全局变量index,进入方法,left为0,right为4,判断特殊情况之后,则证明树一定是有结点的,则创建一个TreeNode类型的root来存储preorder的0号下标位置的元素,然后index++,在创建一个变量pos,用来存储find方法找到的位置下标。

     然后调用root.left = buildTreeHelper(preorder,inorder,left,pos-1),left为0,right为0,在创建root存储1号下标位置元素,然后index++,再用find方法寻找下标。

     然后调用root.left = buildTreeHelper(preorder,inorder,left,pos-1),left为0,right为-1,发现left

    然后调用root.right = buildTreeHelper(preorder,inorder,pos+1,right);left为1,right为0发现left(0)

      然后root.right = buildTreeHelper(preorder,inorder,pos+1,right),left为2,right为4,在创建root存储2号下标位置元素,然后index++,再用find方法寻找下标。

     然后调用root.left = buildTreeHelper(preorder,inorder,left,pos-1),left为2,right为2,在创建root存储3号下标位置元素,然后index++,再用find方法寻找下标。

      然后调用root.left = buildTreeHelper(preorder,inorder,left,pos-1),left为2,right为1,left>right,所以所以直接返回null,所以15的左子树也为null。

    然后调用root.right = buildTreeHelper(preorder,inorder,pos+1,right);left为3,right为2,发现left(0)

     root.right = buildTreeHelper(preorder,inorder,pos+1,right);left为4,right为4,在创建root存储4号下标位置元素,然后index++,再用find方法寻找下标。

     然后调用root.left = buildTreeHelper(preorder,inorder,left,pos-1),left为4,right为3,left>right,所以所以直接返回null,所以7的左子树为null。

    然后调用root.right = buildTreeHelper(preorder,inorder,pos+1,right);left为5,right为4,发现left>right,所以直接返回null,所以15的右子树也为null,那么直接返回root,所以20的右子树就建立成功了。

     所以将root返回,就得到了一棵完整的二叉树。

    1. public TreeNode buildTree(int[] preorder, int[] inorder) {
    2. return buildTreeHelper(preorder,inorder,0,inorder.length-1);
    3. }
    4. int index = 0;
    5. public TreeNode buildTreeHelper(int[] preorder, int[] inorder, int left, int right) {
    6. if(left>right){
    7. return null;
    8. }
    9. if(index==inorder.length){
    10. return null;
    11. }
    12. int rootVal = preorder[index];
    13. TreeNode root = new TreeNode(rootVal);
    14. index++;
    15. int pos = find(root.val,inorder);
    16. root.left = buildTreeHelper(preorder,inorder,left,pos-1);
    17. root.right = buildTreeHelper(preorder,inorder,pos+1,right);
    18. return root;
    19. }
    20. private int find(int val, int[] inorder) {
    21. for (int i = 0; i < inorder.length; i++) {
    22. if (inorder[i] == val) {
    23. return i;
    24. }
    25. }
    26. return -1;
    27. }

    三、从中序遍历与后序遍历序列构造二叉树

    给定两个整数数组 inorder 和 postorder ,其中 inorder 是二叉树的中序遍历, postorder 是同一棵树的后序遍历,请你构造并返回这颗 二叉树。

     我们知道后序遍历的导致就是根右左,所以我们创建一个reverse方法来翻转整个postorder数组,仍然也要创建一个find方法来查找当前元素的位置。

    然后调用创建的buildTreeHelper方法,整个操作都是和之前一样的,不一样的在于先要调用root.right = buildTreeHelper(preorder,inorder,pos+1,right);后调用root.left = buildTreeHelper(preorder,inorder,left,pos-1);

    1. public TreeNode buildTree(int[] inorder, int[] postorder) {
    2. postorder = reverse(postorder);
    3. return buildTreeHelper(postorder,inorder,0,inorder.length-1);
    4. }
    5. private int[] reverse(int[] postorder) {
    6. int[] arr = new int[postorder.length];
    7. int i = arr.length-1;
    8. for(int x :postorder){
    9. arr[i] = x;
    10. i--;
    11. }
    12. return arr;
    13. }
    14. int index = 0;
    15. public TreeNode buildTreeHelper(int[] preorder, int[] inorder, int left, int right) {
    16. if(left>right){
    17. return null;
    18. }
    19. if(index==inorder.length){
    20. return null;
    21. }
    22. int rootVal = preorder[index];
    23. TreeNode root = new TreeNode(rootVal);
    24. index++;
    25. int pos = find(root.val,inorder);
    26. root.right = buildTreeHelper(preorder,inorder,pos+1,right);
    27. root.left = buildTreeHelper(preorder,inorder,left,pos-1);
    28. return root;
    29. }
    30. private int find(int val, int[] inorder) {
    31. for (int i = 0; i < inorder.length; i++) {
    32. if (inorder[i] == val) {
    33. return i;
    34. }
    35. }
    36. return -1;
    37. }

  • 相关阅读:
    “蔚来杯“2022牛客暑期多校训练营2 DGHJKL题解
    保单识别易语言代码
    缓存-多级缓存
    集成 Spring Doc 接口文档和 knife4j-SpringBoot 2.7.2 实战基础
    并行与分布式计算 第一章 基本概念
    初阶扫雷(超详解)
    Breach 1.0 靶机
    白嫖免费版gpt与wetab插件的使用
    华为外包测试2年,不甘被替换,168天的学习转岗成正式员工
    MySQL主从复制原理和使用
  • 原文地址:https://blog.csdn.net/m0_50987960/article/details/128114199