-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBinaryTreeLL.cpp
More file actions
222 lines (160 loc) · 3.18 KB
/
BinaryTreeLL.cpp
File metadata and controls
222 lines (160 loc) · 3.18 KB
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
#include<stdio.h>
#include<stdlib.h>
#include<stddef.h>
struct node
{
char data;
struct node *lchild,*rchild;
}*root=NULL;
void create(struct node *parent)
{
if(parent!=NULL)
{
struct node *t;
char ch='\0';
printf("Do you want to enter left child for %c?(y/n) \n",parent->data);
fflush(stdin);
scanf(" %c",&ch);
if(ch=='y')
{ t=(struct node *)malloc(sizeof(struct node));
printf("Enter the value for the left child \n");
fflush(stdin);
scanf(" %c",&t->data);
parent->lchild=t;
create(t);
}
else
parent->lchild=NULL;
t=NULL;
printf("Do you want to enter right child for %c?(y/n) \n",parent->data);
fflush(stdin);
scanf(" %c",&ch);
if(ch=='y')
{ t=(struct node *)malloc(sizeof(struct node));
printf("Enter the value for the right child \n");
fflush(stdin);
scanf(" %c",&t->data);
parent->rchild=t;
create(t);
}
else
parent->rchild=NULL;
}
}
/* void preorderRec(struct node *root)
{
if(root==NULL)
return;
printf("%c \n",root->data);
preorder(root->lchild);
preorder(root->rchild);
}
void inorderRec(struct node *root)
{
if(root==NULL)
return;
inorder(root->lchild);
printf("%c \n",root->data);
inorder(root->rchild);
}
void postorderRec(struct node *root)
{
if(root==NULL)
return;
postorder(root->lchild);
postorder(root->rchild);
printf("%c \t",root->data);
} */
void preorder()
{
struct node *stack[1000],*temp;
int count=-1;
stack[++count]=NULL;
stack[++count]=root;
while(stack[count]!=NULL)
{
printf("%c",stack[count]->data);
temp=stack[count];
count--;
if(temp->rchild!=NULL)
stack[++count]=temp->rchild;
if(temp->lchild!=NULL)
stack[++count]=temp->lchild;
}
}
void inorder()
{
struct node *stack[1000],*current=NULL;
int count=-1;
stack[++count]=NULL;
current=root;
while(1)
{
while(current!=NULL)
{
stack[++count]=current;
current=current->lchild;
}
if(current==NULL && stack[count]!=NULL)
{
current=stack[count]->rchild;
printf("%c",stack[count]->data);
count--;
}
else
break;
}
}
void postorder()
{
struct node *stack1[1000],*stack2[1000],*temp;
int count1=-1,count2=-1;
stack1[++count1]=NULL;
stack2[++count2]=NULL;
stack1[++count1]=root;
while(stack1[count1]!=NULL)
{
stack2[++count2]=stack1[count1];
temp=stack1[count1];
count1--;
if(temp->lchild!=NULL)
stack1[++count1]=temp->lchild;
if(temp->rchild!=NULL)
stack1[++count1]=temp->rchild;
}
while(stack2[count2]!=0)
{
printf("%c",stack2[count2]->data);
count2--;
}
}
int main()
{
int choice;
printf("Creation time, bitches!!!) \n");
printf("Enter the value for the root \n");
root=(struct node*)malloc(sizeof(struct node));
scanf(" %c",&root->data);
create(root);
printf("Tree created \n");
while(1)
{
printf("Enter your choice :\n 1.Insert an element \n 2.Find the Height \n 3.Preorder Print \n 4.Inorder Print \n 5.Postorder print \n 6.exit \n");
scanf("%d",&choice);
switch(choice)
{
//case 1: insert();
//break;
//case 2: height();
//break;
case 3: preorder();
break;
case 4: inorder();
break;
case 5: postorder();
break;
case 6: exit(0);
default: printf("Invalid Input. Try Again!!!\n");
}
}
}