Skip to content

Commit 9db5254

Browse files
committed
update
1 parent 0091828 commit 9db5254

File tree

3 files changed

+31
-64
lines changed

3 files changed

+31
-64
lines changed

[A]tree/[A]tree-dfs-postorder/865-smallest-subtree-with-all-the-deepest-nodes.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,22 @@
66
# self.right = right
77
class Solution:
88
def subtreeWithAllDeepest(self, root: TreeNode) -> TreeNode:
9-
9+
1010
def dfs(node):
1111
if not node:
12-
return (0, None)
13-
left_height, left_cand = dfs(node.left)
14-
right_height, right_cand = dfs(node.right)
15-
cur_height = max(left_height + 1, right_height + 1)
16-
if left_height == right_height:
12+
return None, 0
13+
left_cand, left_depth = dfs(node.left)
14+
right_cand, right_depth = dfs(node.right)
15+
cur_cand, cur_depth = None, max(left_depth + 1, right_depth + 1)
16+
if left_depth == right_depth:
1717
cur_cand = node
18-
elif left_height > right_height:
18+
elif left_depth > right_depth:
1919
cur_cand = left_cand
2020
else:
2121
cur_cand = right_cand
22-
return (cur_height, cur_cand)
22+
return cur_cand, cur_depth
2323

24-
return dfs(root)[1]
24+
return dfs(root)[0]
2525

2626
# time O(n)
2727
# space O(n)

[A]tree/[A]tree-dfs-preorder/1457-pseudo-palindromic-paths-in-a-binary-tree.py

+14-44
Original file line numberDiff line numberDiff line change
@@ -5,60 +5,30 @@
55
# self.left = left
66
# self.right = right
77
class Solution:
8-
def pseudoPalindromicPaths (self, root: Optional[TreeNode]) -> int:
9-
8+
def pseudoPalindromicPaths(self, root: Optional[TreeNode]) -> int:
109
res = 0
1110

12-
def helper(node, freq):
11+
def valid(val):
12+
count = 0
13+
for i in range(1, 10):
14+
if val & (1 << i) != 0:
15+
count += 1
16+
return count <= 1
17+
18+
def dfs(node, val):
1319
nonlocal res
1420
if not node:
1521
return
16-
17-
freq[node.val - 1] += 1
18-
22+
val ^= 1 << node.val
1923
if not node.left and not node.right:
20-
count = 0
21-
for i in range(9):
22-
if freq[i] % 2:
23-
count += 1
24-
if count <= 1:
25-
res += 1
24+
res += valid(val)
2625
return
26+
dfs(node.left, val)
27+
dfs(node.right, val)
2728

28-
helper(node.left, freq[:])
29-
helper(node.right, freq[:])
30-
31-
helper(root, [0 for _ in range(9)])
29+
dfs(root, 0)
3230
return res
3331

34-
# time O(n)
35-
# space O(n)
36-
# using tree and dfs (preorder and recursive)
37-
38-
class Solution:
39-
def pseudoPalindromicPaths (self, root: Optional[TreeNode]) -> int:
40-
41-
res = 0
42-
43-
def helper(node, mask):
44-
nonlocal res
45-
if not node:
46-
return
47-
48-
mask = mask ^ (1 << node.val)
49-
if not node.left and not node.right:
50-
count = 0
51-
for i in range(1, 10):
52-
if mask & (1 << i):
53-
count += 1
54-
if count <= 1:
55-
res += 1
56-
helper(node.left, mask)
57-
helper(node.right, mask)
58-
59-
helper(root, 0)
60-
return res
61-
6232
# time O(n)
6333
# space O(n)
6434
# using tree and dfs (preorder and recursive) and bitmask

[A]tree/[A]tree-divide-and-conquer/1008-construct-binary-search-tree-from-preorder-traversal.py

+8-11
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,21 @@
66
# self.right = right
77
class Solution:
88
def bstFromPreorder(self, preorder: List[int]) -> Optional[TreeNode]:
9-
10-
n = len(preorder)
119
idx = 0
1210

13-
def build_helper(lower, upper):
11+
def build(min_val, max_val):
1412
nonlocal idx
15-
if idx >= n:
13+
if idx == len(preorder):
1614
return None
17-
val = preorder[idx]
18-
if val <= lower or val >= upper:
15+
if preorder[idx] < min_val or preorder[idx] > max_val:
1916
return None
20-
node = TreeNode(val)
17+
node = TreeNode(preorder[idx])
2118
idx += 1
22-
node.left = build_helper(lower, val)
23-
node.right = build_helper(val, upper)
19+
node.left = build(min_val, node.val)
20+
node.right = build(node.val, max_val)
2421
return node
25-
26-
return build_helper(float('-inf'), float('inf'))
22+
23+
return build(float('-inf'), float('inf'))
2724

2825
# time O(n)
2926
# space O(n)

0 commit comments

Comments
 (0)