-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
106. Construct Binary Tree from Inorder and Postorder Traversal.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Definition for a binary tree node. | ||
# class TreeNode: | ||
# def __init__(self, x): | ||
# self.val = x | ||
# self.left = None | ||
# self.right = None | ||
|
||
class Solution: | ||
def buildTree(self, inorder, postorder): | ||
""" | ||
:type inorder: List[int] | ||
:type postorder: List[int] | ||
:rtype: TreeNode | ||
""" | ||
if not postorder: | ||
return None | ||
i = inorder.index(postorder[-1]) | ||
root=postorder[-1] | ||
root.left=self.buildTree(inorder[:i], postorder[:i]) | ||
root.right=self.buildTree(inorder[i+1:],postorder[i:-1]) | ||
return root |