-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path669 Trim a Binary Search Tree.py
69 lines (58 loc) · 1.12 KB
/
669 Trim a Binary Search Tree.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/python3
"""
Given a binary search tree and the lowest and highest boundaries as L and R,
trim the tree so that all its elements lies in [L, R] (R >= L). You might need
to change the root of the tree, so the result should return the new root of the
trimmed binary search tree.
Example 1:
Input:
1
/ \
0 2
L = 1
R = 2
Output:
1
\
2
Example 2:
Input:
3
/ \
0 4
\
2
/
1
L = 1
R = 3
Output:
3
/
2
/
1
"""
# Definition for a binary tree node.
class TreeNode:
def __init__(self, x):
self.val = x
self.left = None
self.right = None
class Solution:
def trimBST(self, root: TreeNode, L: int, R: int) -> TreeNode:
"""
post-order traverse
"""
return self.walk(root, L, R)
def walk(self, node, L, R):
if not node:
return None
node.left = self.walk(node.left, L, R)
node.right = self.walk(node.right, L, R)
if node.val < L:
return node.right
elif node.val > R:
return node.left
else:
return node