-
Notifications
You must be signed in to change notification settings - Fork 0
/
ExpressionTree.c
243 lines (220 loc) · 4.01 KB
/
ExpressionTree.c
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
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<ctype.h>
struct expressionTree{
char value;
struct expressionTree *right;
struct expressionTree *left;
}*arr[100];
int ptop=-1;
int top1=-1;
int isFull(){
if(top1==101-1)
{printf("Stack Overflow\n");
return 1;
}
else
return 0;
}
/*PUSH FUNCTION*/
void push (char stack[], char item,int* top)//
{
*top=*top+1;
stack[*top] = item;
}
/*POP FUNCTION*/
int pop (char stack[],int* top)
{
int ret;
if (*top == -1)
{ ret = 0;
}
else
{
ret = stack [*top];
*top=*top-1;
}
return ret;
}
/*PUSH FUNCTION FOR ET*/
void PUSH(struct expressionTree* x)
{
if(isFull())
return;
arr[++ptop]=x;
}
/*POP FUNCTION FOR ET*/
struct expressionTree* POP()
{
return(arr[ptop--]);
}
display(int stack[],int top){
int loop;
for(loop=0;loop<=top;loop++){
printf("%d \t",stack[loop]);
}
int isOperand(char check){
int result;
if(check=='*' || check=='/' || check=='+' || check=='-' || check=='(' || check==')'){
result=0;
}
else{
result=1;
}
return result;
}
int pre(char check){
int result;
if(check=='+'){
result=1;
}
else if(check=='-'){
result=1;
}
else if(check=='*'){
result=2;
}
else if(check=='/'){
result=2;
}
else{
result=0;
}
return result;
}
//preOrder(struct expressionTree **parent){
// struct expressionTree *temp;
// temp =*parent;
// if(*parent==NULL){
// return;
// }
// else{
//
// printf("%c \t",temp->value);
// preOrder(&(temp->left));
// preOrder(&(temp->right));
// }
//}
//postOrder(struct expressionTree **parent){
// struct expressionTree *temp;
// temp =*parent;
// if(*parent==NULL){
// return;
// }
// else{
//
// postOrder(&(temp->left));
// postOrder(&(temp->right));
//
// printf("%c \t",temp->value);
// }
//}
//inOrder(struct expressionTree **parent){
// struct expressionTree *temp;
// temp =*parent;
// if(*parent==NULL){
// return;
// }
// else{
//
// inOrder(&(temp->left));
// printf("%c \t",temp->value);
// inOrder(&(temp->right));
//
//
// }
//}
int main(){
char stack1[25];
int top2=-1;
char infix[25];
char postFix[25];
printf("Enter Your Expression:\n");
scanf("%s",&infix);
int i=0;
int j=0;
while(infix[i]!='\0'){
if(isOperand(infix[i])){
postFix[j]=infix[i];
i++;
j++;
}
else{
if(infix[i]=='('){
push(stack1,infix[i],&top1);
// top++;
// stack[top]=infix[i];
i++;
}
else if(infix[i]==')'){
while(stack1[top1]!='('){
postFix[j]=pop(stack1,&top1);
j++;
}
i++;
char rem=pop(stack1,&top1);
}
else{
while(pre(stack1[top1])>=pre(infix[i])){
postFix[j]=pop(stack1,&top1);
j++;
}
push(stack1,infix[i],&top1);
i++;
}
}
}
while(top1!=-1){
postFix[j]=pop(stack1,&top1);
j++;
}
printf("Your Post Fix Expression: ");
printf("%s",postFix);
printf("\n\n\n\n");
//START OF EXPRESSION TREE
int s=0;
//
while(postFix[s++]!='\0'){
if(isalnum(postFix[s])){
struct expressionTree *temp;
temp=(struct expressionTree*)malloc(sizeof(struct expressionTree));
temp->value=postFix[s];
PUSH(temp);
}
else{
struct expressionTree* temp;
temp=(struct expressionTree*)malloc(sizeof(struct expressionTree));
temp->value=postFix[s];
temp->right=POP();
temp->left=POP();
PUSH(temp);
}
}
// while( (ch=pofx[j++]) != '\0'){
// if(isalnum(ch)){
// pushP(createNode(ch));
// }
// else{
// Node *root = createNode(ch);
// root->right = popP();
// root->left = popP();
// printf("%u\n",root);
// pushP(root);
// }
// //arr[j] = createNode(ch);
// }
// struct expressionTree *show=stack2[0];
// printf("\n=====================================================\n");
// printf("\nPre Order = \t");
// preOrder(&show);
// printf("\nPost Order = \t");
// postOrder(&show);
// printf("\nIn Order= \t");
// inOrder(&show);
// printf("\n=====================================================\n");
}}
//temp=(struct treeNode*)malloc(sizeof(struct treeNode));
// temp->key=key;
// temp->left=NULL;
// temp->right=NULL;