forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.py
30 lines (28 loc) · 898 Bytes
/
Solution.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution:
def constructFromPrePost(self, pre, post):
"""
:type pre: List[int]
:type post: List[int]
:rtype: TreeNode
"""
if pre:
root = TreeNode(pre[0])
if len(pre) == 1:
return root
else:
for i in range(0, len(pre) - 1):
if post[i] == pre[1]:
root.left = self.constructFromPrePost(
pre[1:i + 1 + 1], post[:i + 1])
root.right = self.constructFromPrePost(
pre[i + 1 + 1:], post[i + 1:-1])
break
return root
else:
return None