-
Notifications
You must be signed in to change notification settings - Fork 15
/
A1.cpp
400 lines (372 loc) · 6.78 KB
/
A1.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
#include<iostream>
using namespace std;
#include<stack>
#include<queue>
#include<utility>
class node
{
node *right;
node *left;
int info;
public:
node(){
right=NULL;
left=NULL;
info=0;
}
friend class btree;
};
class btree{
node *root;
queue<node*> f;
public:
btree(){
root=NULL;
}
void create();
node* createR();
void inordernonrec();
void postordernonrec();
void preordernonrec();
void inorderrec();
void inorder(node*);
void postorderrec();
void postorder(node*);
void preorderrec();
void preorder(node*);
int height();
int heightR(node*);
void leafinteriornode();
void delnode();
void del(node*);
node* mirror(node*);
node* getroot();
void setroot(node*);
void operator=(btree&);
node* copy(node*);
};
void btree::create(){
stack<node*> s;
if(root==NULL){
cout<<"Enter data for root:";
int temp;
cin>>temp;
node* new1;
new1=new node;
new1->info=temp;
root=new1;
s.push(new1);
}
while(!s.empty()){
node* temp=s.top();
s.pop();
cout<<"consider element "<<temp->info<<endl;
cout<<"Does this have left child:(y/n)";
char op;
int t;
cin>>op;
if(op=='y'){
cout<<"enter data for left:(y/n)";
cin>>t;
node* new1=new node;
new1->info=t;
temp->left=new1;
s.push(new1);
}
cout<<"Does this have right child:(y/n)";
cin>>op;
if(op=='y'){
cout<<"Enter data for right:";
cin>>t;
node* new1=new node;
new1->info=t;
temp->right=new1;
s.push(new1);
}
}
}
node* btree::createR(){
int val,ch;
cout<<"Enter value of node: ";
cin>>val;
if(val==-1)
return NULL;
else{
node *p=new node;
p->info=val;
cout<<"Does "<<p->info<<"left child?(1-y)";
cin>>ch;
if(ch==1)
p->left=createR();
cout<<"Does "<<p->info<<"right child?(1-y)";
cin>>ch;
if(ch==1)
p->right=createR();
return p;
}
}
void btree::inorder(node *a){
if(a!=NULL){
inorder(a->left);
cout<<a->info<<"\t";
inorder(a->right);
}
}
void btree::inordernonrec(){
stack <node*> s;
node *ptr=root;
while(1){
while(ptr!=NULL){
s.push(ptr);
ptr=ptr->left;
}
if(s.empty())
return;
ptr=s.top();
s.pop();
cout<<ptr->info<<"\t";
ptr=ptr->right;
}
}
void btree::postorder(node *a){
if(a!=NULL){
postorder(a->left);
postorder(a->right);
cout<<a->info<<"\t";
}
}
void btree::postordernonrec(){
stack <node*> s1,s2;
s1.push(root);
while(!s1.empty()){
node* temp;
temp=s1.top();
s1.pop();
s2.push(temp);
if(temp->left!=NULL){
s1.push(temp->left);
}
if(temp->right!=NULL)
s1.push(temp->right);
}
while(!s2.empty()){
node* temp=s2.top();
cout<<temp->info<<"\t";
s2.pop();
}
}
void btree::preorder(node *a){
if(a!=NULL){
cout<<a->info<<"\t";
preorder(a->left);
preorder(a->right);
}
}
void btree::preordernonrec(){
stack<node*> s;
node* ptr;
ptr=root;
while(1){
while(ptr!=NULL){
cout<<ptr->info;
s.push(ptr);
ptr=ptr->left;
}
if(s.empty())
return;
ptr=s.top();
s.pop();
ptr=ptr->right;
}
}
int btree::heightR(node *t){
if(t==NULL)
return -1;
return(max(heightR(t->left),heightR(t->right))+1);
}
int btree::height(){
queue<node*> r;
if(root==NULL){
return 0;
}
else{
r.push(root);
int h=0;
while(1){
int nc=r.size();
if(nc==0){
return h;
}
else{
h++;
while(nc>0){
node *temp=r.front();
r.pop();
if(temp->left!=NULL)
r.push(temp->left);
if(temp->right!=NULL)
r.push(temp->right);
nc--;
}
}
}
}
}
void btree::leafinteriornode(){
int l=0,in=0;
stack<node*> s;
node *temp;
s.push(root);
while(!s.empty()){
temp=s.top();
s.pop();
if(temp->left==NULL && temp->right==NULL){
l++;
}
else{
in++;
}
if(temp->right!=NULL)
s.push(temp->right);
if(temp->left!=NULL)
s.push(temp->left);
}
cout<<"Total leaf nodes:"<<l<<"\n"<<"Total internal nodes:"<<in;
}
void btree::del(node *ptr){
if(ptr!=NULL){
del(ptr->left);
del(ptr->right);
delete ptr;
}
}
node* btree::getroot(){
return root;
}
node* btree::mirror(node *rt){
node* m_root=NULL;
if(rt==NULL){
return NULL;
}
m_root=new node;
m_root->info=rt->info;
m_root->left=mirror(rt->right);
m_root->right=mirror(rt->left);
return m_root;
}
void btree::setroot(node *r){
root=r;
}
void btree::operator=(btree &b){
node *s=NULL;
s=copy(b.root);
setroot(s);
cout<<"Inorder traversal of tree:"<<endl;
inordernonrec();
cout<<"\n";
cout<<"Preorder traversal of tree:"<<endl;
preordernonrec();
cout<<"\n";
cout<<"Postorder traversal of tree:"<<endl;
postordernonrec();
cout<<"\n";
}
node* btree::copy(node *rt){
node* m_root=NULL;
if(rt==NULL){
return NULL;
}
m_root=new node;
m_root->info=rt->info;
m_root->left=mirror(rt->left);
m_root->right=mirror(rt->right);
return m_root;
}
int main(){
btree a,b2,b3;
int op,num;
char op1;
b:
cout<<"enter the operation you want to perform"<<"\n";
cout<<"1.create\n2.inorder\n3.postorder\n4.preorder\n5.height\n";
cout<<"6.interior leaf nodes print\n7.delete node\n8.mirroring\n9.copying";
cin>>op;
switch(op){
case 1:cout<<"1.recursively\n2.non-recursively\n";
cin>>num;
switch(num){
case 1:node *r;
r=a.createR();
a.setroot(r);
break;
case 2:a.create();
break;
}
break;
case 2:cout<<"1.recursively\n2.non-recursively\n";
cin>>num;
switch(num){
case 1:a.inorder(a.getroot());
break;
case 2:a.inordernonrec();
break;
}
break;
case 3:cout<<"1.recursively\n2.non-recursively\n";
cin>>num;
switch(num){
case 1:a.postorder(a.getroot());
break;
case 2:a.postordernonrec();
break;
}
break;
case 4:cout<<"1.recursively\n2.non-recursively\n";
cin>>num;
switch(num){
case 1:a.preorder(a.getroot());
break;
case 2:a.preordernonrec();
break;
}
break;
case 5:cout<<"1.recursively\n2.non-recursively\n";
cin>>num;
int h;
switch(num){
case 1:h=a.heightR(a.getroot());
break;
case 2:h=a.height();
break;
}
cout<<"the height is:"<<h<<"\n";
break;
case 6:a.leafinteriornode();
break;
case 7:a.del(a.getroot());
break;
case 8: cout<<"Mirror tree\n";
node *mr;
mr=a.mirror(a.getroot());
b2.setroot(mr);
cout<<"Inorder traversal of tree:"<<endl;
b2.inordernonrec();
cout<<"\n";
cout<<"Preorder traversal of tree:"<<endl;
b2.preordernonrec();
cout<<"\n";
cout<<"Postorder traversal of tree:"<<endl;
b2.postordernonrec();
cout<<"\n";
break;
case 9:cout<<"Copy tree\n";
b3=a;
break;
}
cout<<"do you want to do more operations";
cin>>op1;
if(op1=='y'||op1=='Y'){
goto b;
}
return 0;
}