-
Notifications
You must be signed in to change notification settings - Fork 1
/
032_03-按之字形顺序打印二叉树.cpp
51 lines (46 loc) · 1.27 KB
/
032_03-按之字形顺序打印二叉树.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
/*
struct TreeNode {
int val;
struct TreeNode *left;
struct TreeNode *right;
TreeNode(int x) :
val(x), left(NULL), right(NULL) {
}
};
*/
class Solution {
public:
vector<vector<int> > Print(TreeNode* pRoot) {
vector<vector<int>> res;
if(pRoot==nullptr)
return res;
vector<int> v;
stack<TreeNode*> s[2];
int current=0;
int next=1;
s[current].push(pRoot);
while(!s[0].empty()||!s[1].empty()){
TreeNode* node=s[current].top();
v.push_back(node->val);
s[current].pop();
if(current==0){
if(node->left!=nullptr)
s[next].push(node->left);
if(node->right!=nullptr)
s[next].push(node->right);
}else{
if(node->right!=nullptr)
s[next].push(node->right);
if(node->left!=nullptr)
s[next].push(node->left);
}
if(s[current].empty()){
res.push_back(v);
vector<int> ().swap(v);
current=1-current;
next=1-next;
}
}
return res;
}
};