-
Notifications
You must be signed in to change notification settings - Fork 0
/
103. 二叉树的锯齿形层序遍历.cpp
52 lines (49 loc) · 1.42 KB
/
103. 二叉树的锯齿形层序遍历.cpp
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
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
vector<vector<int>> zigzagLevelOrder(TreeNode* root) {
if(root==NULL) return{};
queue<TreeNode* > q;
q.push(root);
vector<vector<int>>ans;
bool flag=true;
while(!q.empty()){
int size=q.size();
vector<int>el(size,0);
int k;
if(flag){
k=0;
flag=!flag;
for(int i=0;i<size;i++){
TreeNode* temp=q.front();
q.pop();
el[k++]=temp->val;
if(temp->left) q.push(temp->left);
if(temp->right) q.push(temp->right);
}
}else{
k=size-1;
flag=!flag;
for(int i=0;i<size;i++){
TreeNode* temp=q.front();
q.pop();
el[k--]=temp->val;
if(temp->left) q.push(temp->left);
if(temp->right) q.push(temp->right);
}
}
ans.push_back(el);
}
return ans;
}
};