class Solution {
public TreeNode buildTree(int[] inorder, int[] postorder) {
return build(inorder,0,inorder.length-1,postorder,0,postorder.length-1);
}
public TreeNode build(int[] inorder, int lo1,int hi1,int[] postorder,int lo2,int hi2){
if(lo1>hi1 || lo2>hi2)return null;
int index=lo1;
for(int i=lo1;i<=hi1;i++){
if(inorder[i]==postorder[hi2]){
index=i;
break;
}
}
int leftsize=index-lo1;
TreeNode root=new TreeNode(postorder[hi2]);
root.left=build(inorder,lo1,index-1,postorder,lo2,lo2+leftsize-1);
root.right=build(inorder,index+1,hi1,postorder,lo2+leftsize,hi2-1);
return root;
}
}
相关文章
- 10-13已知中序序列和前序/后序序列建立二叉树(二叉链式)
- 10-13PAT 甲级 1020 Tree Traversals (25 分)(二叉树已知后序和中序建树求层序)
- 10-13已知二叉树先序遍历中序遍历求其后序遍历、重建二叉树
- 10-13LeetCode: 106_Construct Binary Tree from Inorder and Postorder Traversal | 根据中序和后序遍历构建二叉树 | Medium
- 10-13字符串->树 3.重建二叉树(已知中序后序)106
- 10-13A - 数据结构实验之二叉树二:遍历二叉树 Description 已知二叉树的一个按先序遍历输入的字符序列,如abc,,de,g,,f,,, (其中,表示空结点)。请建立二叉树并按中序和后序的方式
- 10-13【Leetcode二叉树的修改与构造一】105. 从前序与中序遍历序列构造二叉树 106. 从中序与后序遍历序列构造二叉树
- 10-13力扣--根据前序、中序和后序来重建二叉树
- 10-13Leetcode练习(Python):数组类:第106题:根据一棵树的中序遍历与后序遍历构造二叉树。 注意: 你可以假设树中没有重复的元素。
- 10-13HDU 1710Binary Tree Traversals(已知前序中序,求后序的二叉树遍历)