106. Construct Binary Tree From Inorder And Postorder Traversal
难度: Medium
刷题内容
原题连接
- https://leetcode-cn.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal/
内容描述
根据一棵树的中序遍历与后序遍历构造二叉树。
注意: 你可以假设树中没有重复的元素。
例如,给出
中序遍历 inorder = [9,3,15,20,7] 后序遍历 postorder = [9,15,7,20,3] 返回如下的二叉树:
3
/ \
9 20
/ \
15 7
解题方案
思路 1 **- 时间复杂度: O(N)*- 空间复杂度: O(N)***
代码:
var buildTree = function(inorder, postorder) {
if (!inorder.length || !postorder.length) {
return null
}
let rootVal = postorder[postorder.length - 1]
let root = new TreeNode(rootVal)
let k = inorder.indexOf(rootVal)
root.left = buildTree(inorder.slice(0, k), postorder.slice(0, k))
root.right = buildTree(inorder.slice(k+1), postorder.slice(k, postorder.length - 1))
return root
};