-
Notifications
You must be signed in to change notification settings - Fork 481
/
0107.py
71 lines (60 loc) · 1.64 KB
/
0107.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
# Definition for a binary tree node.
class TreeNode:
def __init__(self, x):
self.val = x
self.left = None
self.right = None
class Solution:
def levelOrderBottom(self, root):
"""
:type root: TreeNode
:rtype: List[List[int]]
"""
q, result = [root], []
while any(q):
tmp = list()
len_q = len(q)
for _ in range(len_q):
node = q.pop(0)
tmp.append(node.val)
if node.left:
q.append(node.left)
if node.right:
q.append(node.right)
result.insert(0, tmp)
return result
def createTree(root):
if root == None:
return root
Root = TreeNode(root[0])
nodeQueue = [Root]
index = 1
front = 0
while index < len(root):
node = nodeQueue[front]
item = root[index]
index += 1
if item != None:
leftNumber = item
node.left = TreeNode(leftNumber)
nodeQueue.append(node.left)
if index >= len(root):
break
item = root[index]
index += 1
if item != None:
rightNumber = item
node.right = TreeNode(rightNumber)
nodeQueue.append(node.right)
front += 1
return Root
def printTree(root):
if root != None:
print(root.val)
printTree(root.left)
printTree(root.right)
if __name__ == "__main__":
root = [1,None,2,3]
treeRoot = createTree(root)
printTree(treeRoot)
print(Solution().levelOrderBottom(treeRoot))