-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathinvert_tree_rec.py
74 lines (56 loc) · 1.54 KB
/
invert_tree_rec.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
import os, sys
currentdir = os.path.dirname(os.path.realpath(__file__))
parentdir = os.path.dirname(currentdir)
sys.path.append(parentdir)
from collections import deque
import collections
from typing import List
from binarytree import BinaryTree, Node
tests = {
1: [4,2,7,1,3,6,9],
2: [2,1,3],
3: []
}
res = {
1: [4,7,2,9,6,3,1],
2: [2,3,1],
3: []
}
def parse_tree(tree_input):
bst = BinaryTree()
if not tree_input:
return bst
input_datas = []
for item in tree_input:
if item == 'N':
input_datas.append(None)
else:
input_datas.append(int(item))
bst.create_bst(input_datas)
return bst
def is_same_list(alist: List, blist: List):
return collections.Counter(alist) == collections.Counter(blist)
def check_result(index: int, output: List):
if index > len(tests):
raise RuntimeError(f'Failed to get {index}th case')
return is_same_list(output, res.get(index, []))
def invertTree(root: Node) -> Node:
if root == None:
return None
left = root.left
root.left = root.right
root.right = left
invertTree(root.left)
invertTree(root.right)
return root
def main():
for index, tree_input in tests.items():
bst = parse_tree(tree_input)
node_head = invertTree(bst.root)
res = bst.inorder_traverse(node_head)
if check_result(index, res):
print(f'Test case {index} is correct')
else:
print(f'Test case {index} is failed')
if __name__ == '__main__':
main()