根据先序遍历序列中序遍历序列重建二叉树

Java题解

public class Solution {
    public TreeNode reConstructBinaryTree(int [] pre,int [] in) {
        int h1 = pre.length - 1;
        int h2 = in.length - 1;
        TreeNode treeNode = buildTree(pre, in, 0, h1, 0, h2);
        return treeNode;
    }

    /**
     *
     * @param pre 先序序列
     * @param in 中序序列
     * @param l1 先序起点下标 0
     * @param h1 先序终点下标 pre.length - 1
     * @param l2 中序起点下标 0
     * @param h2 中序终点下标 in.length - 1
     * @return
     */
    public TreeNode buildTree(int[] pre, int[] in, int l1, int h1, int l2, int h2){
        // 新建节点
        TreeNode node = new TreeNode(pre[l1]);
        // 划分序列
        int i=l2;
        for( ; in[i]!=node.val; i++);
        // 左子树节点个数
        int llen = i-l2;
        // 右子树节点个数
        int rlen = h2-i;
        // 建左子树
        if(llen>0){
            node.left = buildTree(pre, in, l1+1, l1+llen, l2, l2+llen-1);
        }else {
            node.left = null;
        }
        // 建右子树
        if(rlen>0){
            node.right = buildTree(pre, in, h1-rlen+1, h1, h2-rlen+1, h2);
        }else {
            node.right = null;
        }
        return node;
    }
}
全部评论

相关推荐

10-07 20:48
门头沟学院 Java
听说改名就会有offer:可能是实习上着班想到后面还要回学校给导师做牛马,看着身边都是21-25的年纪,突然emo了了
点赞 评论 收藏
分享
躺尸修仙中:因为很多92的也去卷中小厂,反正投递简历不要钱,面试不要钱,时间冲突就推,不冲突就面试积累经验
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务