forked from y-ncao/Python-Study
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBinary_Tree_Zigzag_Level_Order_Traversal.py
54 lines (51 loc) · 1.55 KB
/
Binary_Tree_Zigzag_Level_Order_Traversal.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
"""
Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and alternate between).
For example:
Given binary tree {3,9,20,#,#,15,7},
3
/ \
9 20
/ \
15 7
return its zigzag level order traversal as:
[
[3],
[20,9],
[15,7]
]
"""
# Definition for a binary tree node
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution:
# @param root, a tree node
# @return a list of lists of integers
def zigzagLevelOrder(self, root):
ret = []
if root is None:
return ret
queue = [root, None]
res = []
zig = False # Because we start from very root, so no reverse at that point
while len(queue) > 0:
node = queue.pop(0)
if node is None:
if zig:
ret.append(res[::-1])
else:
ret.append(res[:])
res = []
if len(queue) == 0: # Break here, otherwise will append another None
break
zig = not zig
queue.append(None)
else:
res.append(node.val) # Remember this, need to do this in node, not node.left/right
if node.left is not None:
queue.append(node.left)
if node.right is not None:
queue.append(node.right)
return ret