forked from jianminchen/Leetcode_Julia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path103 - Binary Tree Zigzag Level Order Traversal.cs
91 lines (75 loc) · 2.25 KB
/
103 - Binary Tree Zigzag Level Order Traversal.cs
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
/**
* Definition for a binary tree node.
* public class TreeNode {
* public int val;
* public TreeNode left;
* public TreeNode right;
* public TreeNode(int x) { val = x; }
* }
*/
public class Solution
{
public IList<IList<int>> ZigzagLevelOrder(TreeNode root)
{
var zigzagLevelNumbers = new List<IList<int>>();
if (root == null)
return zigzagLevelNumbers;
var currentStack = new Stack<TreeNode>();
var nextStack = new Stack<TreeNode>();
currentStack.Push(root);
var leftFirst = true; // left and right
int levelIndex = 0;
var temp = new List<int>();
while (currentStack.Count != 0)
{
// new level starts by checking levelIndex
if (zigzagLevelNumbers.Count == levelIndex)
{
temp = new List<int>();
zigzagLevelNumbers.Add(temp);
}
while (currentStack.Count != 0)
{
var node = currentStack.Pop();
var left = node.left;
var right = node.right;
var hasLeftChild = left != null;
var hasRightChild = right != null;
temp.Add(node.val);
if (leftFirst)
{
if (hasLeftChild)
{
nextStack.Push(left);
}
if (hasRightChild)
{
nextStack.Push(right);
}
}
else
{
if (hasRightChild)
{
nextStack.Push(right);
}
if (hasLeftChild)
{
nextStack.Push(left);
}
}
}
if (currentStack.Count == 0)
{
// swap levels
var tmp = currentStack;
currentStack = nextStack;
nextStack = tmp;
// change the order
leftFirst = !leftFirst;
levelIndex++;
}
}
return zigzagLevelNumbers;
}
}