从中序与后序遍历序列构造二叉树(炫酷版

该博客介绍了如何通过给定的二叉树中序遍历和后序遍历数组来重建二叉树。核心思路是利用后序遍历中最后一个元素作为根节点,并递归地构建左子树和右子树。具体实现包括定义一个辅助函数,该函数接收中序和后序遍历数组的起始和结束索引,以及相应的子区间,以创建完整的树结构。
摘要由CSDN通过智能技术生成

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

在这里插入图片描述
思路:后序二叉树的规则,左右根,因此后序数组的最后一个数就是根,所以我们直接创造根结点就行,在利用剩余数组创造子节点,因为给的函数参数只有两个数组,所以我们需要再创造一个带有其他参数的函数,这些参数能够代表分别两个数组的起始位置,即从哪到哪是中序或者后序

class Solution {
    public TreeNode buildTree(int[] inorder, int[] postorder) {
        int len=inorder.length;
        return myBuildTree(inorder,postorder,0,len-1,0,len-1);
    }

    public TreeNode myBuildTree(int[] inorder,int[] postorder,int inleft,int inright,int poleft,int poright){
        if(inleft==inright) return new TreeNode(inorder[inleft]);
        else if(inleft>inright||poleft>poright||inleft<0||poleft<0||inright>=inorder.length||poright>=inorder.length) return null;
        int rootnum=postorder[poright];
        System.out.println("inleft:"+inleft+"   inright:"+inright);
        System.out.println("poleft:"+poleft+"   poright:"+poright);
        int roottemp=0;
        for(int i=0;i<inorder.length;i++){
            if(inorder[i]==rootnum){
                roottemp=i;
            }
        }
        TreeNode root=new TreeNode(rootnum);
        root.left=myBuildTree(inorder,postorder,inleft,roottemp-1,poleft,poleft+(roottemp-1-inleft));
        root.right=myBuildTree(inorder,postorder,roottemp+1,inright,poright-1-(inright-roottemp-1),poright-1);
        return root;
    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值