剑指 Offer 07. 重建二叉树

剑指 Offer 07. 重建二叉树

输入某二叉树的前序遍历和中序遍历的结果,请构建该二叉树并返回其根节点。

假设输入的前序遍历和中序遍历的结果中都不含重复的数字。

示例 1:

在这里插入图片描述

Input: preorder = [3,9,20,15,7], inorder = [9,3,15,20,7]
Output: [3,9,20,null,null,15,7]
示例 2:

Input: preorder = [-1], inorder = [-1]
Output: [-1]
 

限制:

0 <= 节点个数 <= 5000

解法一:HashMap 找根

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    int[] preorder;
    HashMap<Integer,Integer> dic = new HashMap<>();
    public TreeNode buildTree(int[] preorder, int[] inorder) {
       this.preorder = preorder;
       for(int i = 0; i < inorder.length; i++){
           dic.put(inorder[i],i);
       }
       return recur(0,0,inorder.length - 1);
    }
    TreeNode recur(int root,int left,int right){
        if(left > right) return null;
        TreeNode node = new TreeNode(preorder[root]);
        int i = dic.get(preorder[root]);
        node.left = recur(root + 1, left,i - 1);
        node.right = recur(root + i - left + 1, i + 1,right);
        return node;
    }
}

解法二:基础 必会的

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public int getIndex(int[] arr ,int target){
        for(int i = 0; i < arr.length; i++ ){
            if(target == arr[i])
            return i;
        }
        return 0;
    }
  
    public TreeNode buildTree(int[] preorder, int[] inorder) {
        //做特殊判断
        if(preorder == null || inorder == null || preorder.length == 0
         || inorder.length == 0 || preorder.length != inorder.length)
         return null;
         //创建根节点
         TreeNode root = new  TreeNode(preorder[0]);
         int rootVal = getIndex(inorder,root.val);
         //找到左子树的前序和中序
         int[] leftPer = Arrays.copyOfRange(preorder,1,rootVal + 1);
         int[] leftIno = Arrays.copyOfRange(inorder,0,rootVal);
         //找到右子树的前序和中序
         int[] rightPer = Arrays.copyOfRange(preorder,rootVal + 1,preorder.length);
         int[] rightIno = Arrays.copyOfRange(inorder,rootVal + 1,inorder.length);
         //递归遍历
         root.left = buildTree(leftPer,leftIno);
         root.right = buildTree(rightPer,rightIno);
         return root;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

师晓峰

啤酒饮料矿泉水,你的打赏冲一冲

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值