2022-03-27 20:56:26 +08:00
< p > Given two integer arrays < code > inorder< / code > and < code > postorder< / code > where < code > inorder< / code > is the inorder traversal of a binary tree and < code > postorder< / code > is the postorder traversal of the same tree, construct and return < em > the binary tree< / em > .< / p >
< p > < / p >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 1:< / strong > < / p >
2022-03-27 20:56:26 +08:00
< img alt = "" src = "https://assets.leetcode.com/uploads/2021/02/19/tree.jpg" style = "width: 277px; height: 302px;" / >
< pre >
< strong > Input:< / strong > inorder = [9,3,15,20,7], postorder = [9,15,7,20,3]
< strong > Output:< / strong > [3,9,20,null,null,15,7]
< / pre >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 2:< / strong > < / p >
2022-03-27 20:56:26 +08:00
< pre >
< strong > Input:< / strong > inorder = [-1], postorder = [-1]
< strong > Output:< / strong > [-1]
< / pre >
< p > < / p >
< p > < strong > Constraints:< / strong > < / p >
< ul >
< li > < code > 1 < = inorder.length < = 3000< / code > < / li >
< li > < code > postorder.length == inorder.length< / code > < / li >
< li > < code > -3000 < = inorder[i], postorder[i] < = 3000< / code > < / li >
< li > < code > inorder< / code > and < code > postorder< / code > consist of < strong > unique< / strong > values.< / li >
< li > Each value of < code > postorder< / code > also appears in < code > inorder< / code > .< / li >
< li > < code > inorder< / code > is < strong > guaranteed< / strong > to be the inorder traversal of the tree.< / li >
< li > < code > postorder< / code > is < strong > guaranteed< / strong > to be the postorder traversal of the tree.< / li >
< / ul >