-
Notifications
You must be signed in to change notification settings - Fork 2
/
144.py
104 lines (84 loc) · 2.82 KB
/
144.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# [ LeetCode ] 144. Binary Tree Preorder Traversal
def solution(root: "TreeNode") -> list[int]:
def preorder_traverse(node: TreeNode) -> None:
nonlocal answer
if node:
answer.append(node.val)
if node.left:
preorder_traverse(node=node.left)
if node.right:
preorder_traverse(node=node.right)
answer: list[int] = []
preorder_traverse(node=root)
return answer
def another_solution(root: "TreeNode") -> list[int]:
answer: list[int] = []
if root:
stack: list[TreeNode] = [root]
while stack:
count: int = len(stack)
while count:
node: TreeNode = stack.pop()
answer.append(node.val)
if node.right:
stack.append(node.right)
if node.left:
stack.append(node.left)
count -= 1
return answer
def iterate_solution(root: "TreeNode") -> list[int]:
answer: list[int] = []
stack: list[TreeNode] = [root]
while stack:
node: TreeNode = stack.pop()
if node:
answer.append(node.val)
stack.append(node.right)
stack.append(node.left)
return answer
if __name__ == "__main__":
class TreeNode:
def __init__(
self,
val: int,
left: "TreeNode" = None,
right: "TreeNode" = None
) -> None:
self.val = val
self.left = left
self.right = right
def create_binary_tree(index: int, items: list[int]) -> TreeNode:
if items[index]:
root: TreeNode = TreeNode(val=items[index])
if (index*2+1) < len(items):
root.left: TreeNode | None = create_binary_tree(
index=index*2+1, items=items
)
if (index*2+2) < len(items):
root.right: TreeNode | None = create_binary_tree(
index=index*2+2, items=items
)
return root
else:
return None
cases: list = [
{
"input": { "items": [1, None, 2, None, None, 3, None] },
"output": [1, 2, 3]
},
{
"input": { "items": [None] },
"output": []
},
{
"input": { "items": [1] },
"output": [1]
}
]
for case in cases:
assert case["output"] == solution(
root=create_binary_tree(index=0, items=case["input"]["items"])
)
assert case["output"] == another_solution(
root=create_binary_tree(index=0, items=case["input"]["items"])
)