-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBinaryTreeZigzagLevelOrderTraversal.h
64 lines (56 loc) · 1.59 KB
/
BinaryTreeZigzagLevelOrderTraversal.h
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
/*
Author: naiyong, aonaiyong@gmail.com
Date: Sep 29, 2014
Problem: BinaryTreeZigzagLevelOrderTraversal.h
Difficulty:
Source:
Notes:
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]
]
Solution: Iterative with Queue.
Time: O(n), Space: O(n).
*/
#ifndef BINARYTREEZIGZAGLEVELORDERTRAVERSAL_H_
#define BINARYTREEZIGZAGLEVELORDERTRAVERSAL_H_
#include <vector>
using std::vector;
#include <queue>
using std::queue;
#include "TreeNode.h"
class Solution {
public:
vector<vector<int> > zigzagLevelOrder(TreeNode *root) {
vector<vector<int> > values;
queue<TreeNode *> frontier;
bool leftToRight = true;
if (root) frontier.push(root);
while (!frontier.empty()) {
int n = frontier.size();
vector<int> level(n);
for (int i = 0; i < n; ++i) {
TreeNode *node = frontier.front();
int j = leftToRight ? i : n - 1 - i;
level[j] = node->val;
if (node->left) frontier.push(node->left);
if (node->right) frontier.push(node->right);
frontier.pop();
}
values.push_back(level);
leftToRight = !leftToRight;
}
return values;
}
};
#endif /* BINARYTREEZIGZAGLEVELORDERTRAVERSAL_H_ */