-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueue_compute_binarytree_line_by_line_variant1.cpp
143 lines (119 loc) · 2.76 KB
/
queue_compute_binarytree_line_by_line_variant1.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
//compute binary tree with zig zag traversal!!
//1. Using recursion
//2. 2 stacks
//3. 1 queue
//https://ide.geeksforgeeks.org/cIUegw22Bn
#include<bits/stdc++.h>
using namespace std;
struct Node{
int data;
Node* left;
Node* right;
};
Node *createNode(int data){
Node *root = new Node();
root->data = data;
root->left = NULL;
root->right = NULL;
return root;
}
int height(Node *root){
if(!root) return 0;
return 1 + max(height(root->left), height(root->right));
}
void printLevel(Node *root, int i, bool flag){
if(!root) return;
if(i == 1){ //root
cout<<root->data<<" ";
}
else if(i > 1){
if(flag){
printLevel(root->left, i - 1, flag);
printLevel(root->right, i - 1, flag);
}
else{
printLevel(root->right, i - 1, flag);
printLevel(root->left, i - 1, flag);
}
}
}
void printSpiral(Node *root)
{
//Your code here
if(!root) return;
int h = height(root);
bool flag = 0;
for(int i=1; i<=h; i++){
printLevel(root, i, flag);
flag = !flag;
}
}
void printSpiralv1(Node *root){
if(!root) return;
stack<Node *> s1; //right to left;
stack<Node *> s2; //left to right;
s1.push(root);
while(!s1.empty() || !s2.empty()){
while(!s1.empty()){
Node *curr = s1.top();
cout<<curr->data<<" ";
s1.pop();
if(curr->right)
s2.push(curr->right);
if(curr->left)
s2.push(curr->left);
}
while(!s2.empty()){
Node *curr = s2.top();
cout<<curr->data<<" ";
s2.pop();
if(curr->left)
s1.push(curr->left);
if(curr->right)
s1.push(curr->right);
}
}
}
void printSpiralv2(Node *root){
if(!root) return;
stack<int> s;
queue<Node *> q;
bool var = true;
q.push(root);
while(!q.empty()){
int size = q.size();
while(size>0){
//int x = y.size()
Node *curr = q.front();
q.pop();
if(var) //if right to left
s.push(curr->data);
else //when normal left to right
cout<<curr->data<<" ";
if(curr->left) q.push(curr->left);
if(curr->right) q.push(curr->right);
size--;
}
if(var){
while(!s.empty()){
cout<<s.top()<<" ";
s.pop();
}
}
var = !var;
}
}
int main(){
Node *root = createNode(1);
root->left = createNode(2);
root->right = createNode(3);
root->left->left = createNode(4);
root->left->right = createNode(5);
root->right->left = createNode(6);
root->right->right = createNode(7);
printSpiral(root);
cout<<"\n";
printSpiralv1(root);
cout<<"\n";
printSpiralv2(root);
}