-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogram.cpp
49 lines (42 loc) · 996 Bytes
/
program.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
class Solution{
public:
//Function to store the zig zag order traversal of tree in a list.
vector <int> zigZagTraversal(Node* root)
{
// Code here
vector<int> res;
if(root==NULL)
{
return res;
}
queue<Node*>q;
q.push(root);
bool ltr=true;
while(!q.empty())
{
int size=q.size();
vector<int> ans(size);
for(int i=0;i<size;i++)
{
Node*frontval=q.front();
q.pop();
int index=ltr?i:size-i-1;
ans[index]=frontval->data;
if(frontval->left)
{
q.push(frontval->left);
}
if(frontval->right)
{
q.push(frontval->right);
}
}
ltr=!ltr;
for(auto i:ans)
{
res.push_back(i);
}
}
return res;
}
};