-
Notifications
You must be signed in to change notification settings - Fork 0
/
advanceinfixtoprefix.c
195 lines (161 loc) · 2.83 KB
/
advanceinfixtoprefix.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
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
struct node{
char data;
struct node *next;
}*top=NULL;
void push(char x){
struct node *t=(struct node*)malloc(sizeof(struct node));
if(t==NULL)
printf("Stack Overflow");
else{
t->data=x;
t->next=top;
top=t;
}
}
int pop()
{
struct node *t;
char x=-1;
if(top==NULL)
printf("Stack underflow");
else{
t=top;
x=t->data;
top=top->next;
free(t);
}
return x;
}
void display()
{
struct node *p;
p=top;
while(p){
printf("%c",p->data);
p=p->next;
}
}
int isbalancedparenthesis(char *exp){
for(int i=0;exp[i]!='\0';i++)
{
if(exp[i]=='(')
push(exp[i]);
else if(exp[i]==')')
{
if(top==NULL)return 0;
pop();
}
}
if(top==NULL)
return 1;
else
return 0;
}
int pre(char x)
{
if(x=='+'||x=='-')
return 1;
else if(x=='*'||x=='/')
return 3;
else if(x==')')
return 0;
return 0;
}
int insidestack()
{
if(top==NULL)
return 0;
else if(top->data=='+'||top->data=='-')
return 2;
else if(top->data=='*'||top->data=='/')
return 4;
else if(top->data=='^')
return 5;
else if(top->data='(')
return 0;
else if(top==NULL)
return 0;
}
int isOperand(char x)
{
if(x=='+'||x=='-'||x=='*'||x=='/'||x=='^'||x=='('||x==')')
return 0;
else return 1;
}
// The driver function for infix to postfix conversion
char* intopost(char *infix){
char *postfix;
int len=strlen(infix);
postfix=(char*)malloc((len+2)*sizeof(char));
int i=0,j=0,flag=0;
while(infix[i]!='\0')
{
if(isOperand(infix[i]))
postfix[j++]=infix[i++];
else if(infix[i]=='(')
push(infix[i++]);
else if(pre(infix[i])>insidestack() && infix[i]!=')')
push(infix[i++]);
else
{
if(top->data=='(')
{pop();
i++;}
else
postfix[j++]=pop();
}}
while(top!=NULL)
postfix[j++]=pop();
postfix[j]='\0';
return postfix;
}
void reverse(char *exp){
int size = strlen(exp);
int j = size, i=0;
char temp[size];
temp[j--]='\0';
while(exp[i]!='\0')
{
temp[j] = exp[i];
j--;
i++;
}
strcpy(exp,temp);
}
void brackets(char* exp){
int i = 0;
while(exp[i]!='\0')
{
if(exp[i]=='(')
exp[i]=')';
else if(exp[i]==')')
exp[i]='(';
i++;
}
}
char * InfixtoPrefix(char *exp){
int size = strlen(exp);
// reverse string
reverse(exp);
//change brackets
brackets(exp);
//get postfix
char *a=intopost(exp);
// reverse string again
reverse(a);
return a;
}
int main()
{
printf("The infix is: ");
char expression[] = "A+B-C";
printf("%s\n",expression);
char *s=InfixtoPrefix(expression);
printf("The prefix is: ");
printf("%s\n",s);
return 0;
}
// REVERSE THE PRECEDENCE OF OPERATOR