-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfixPostfixCompiler.CPP
More file actions
164 lines (149 loc) · 3.9 KB
/
Copy pathInfixPostfixCompiler.CPP
File metadata and controls
164 lines (149 loc) · 3.9 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
#include<iostream.h>
#include<conio.h>
#include<string.h>
#include<ctype.h>
#include<stdlib.h>
class IN_To_POST
{
char stack[100];
int top;
public:
IN_To_POST()
{
top=-1;
}
void push(char item)
{
if(top >99)
cout<<"\nStack Overflow.";
else
stack[++top] = item;
}
char pop()
{
char item ;
if(top <0)
{
cout<<"stack under flow: invalid infix expression";
return ' ';
}
else
{
item = stack[top--];
return item;
}
}
int is_operator(char symbol)
{
if(symbol == '^' || symbol == '*' || symbol == '/' || symbol == '%' || symbol == '+' || symbol =='-')
return 1;
else
return 0;
}
int precedence(char symbol)
{
if(symbol == '^')/* exponent operator, highest precedence*/
{
return(3);
}
else if(symbol == '*' || symbol == '/' || symbol=='%')
{
return(2);
}
else if(symbol == '+' || symbol == '-') /* lowest precedence */
{
return(1);
}
else
{
return(0);
}
}
void InfixToPostfix(char infix_exp[], char postfix_exp[]);
};
void IN_To_POST::InfixToPostfix(char infix_exp[], char postfix_exp[])
{
int i, j;
char item;
char x;
i=0;
j=0;
item=infix_exp[i]; /* initialize before loop*/
while(item != '\0') /* run loop till end of infix expression */
{
if(item == '(')
{
push(item);
}
else if(isalnum(item))
{
postfix_exp[j] = item; /* add operand symbol to postfix expr */
j++;
}
else if(is_operator(item) == 1) /* means symbol is operator */
{
x=pop();
while(is_operator(x) == 1 && precedence(x)>= precedence(item))
{
postfix_exp[j] = x; /* so pop all higher precendence operator and */
j++;
x = pop(); /* add them to postfix expresion */
}
push(x);
/* because just above while loop will terminate we have
oppped one extra item
for which condition fails and loop terminates, so that one*/
push(item); /* push current oprerator symbol onto stack */
}
else if(item == ')') /* if current symbol is ')' then */
{
x = pop(); /* pop and keep popping until */
while(x != '(') /* '(' encounterd */
{
postfix_exp[j] = x;
j++;
x = pop();
}
}
else
{ /* if current symbol is neither operand not '(' nor ')' and nor
operator */
cout<<"\nInvalid infix Expression.\n"; /* the it is illegeal symbol */
return;
}
i++;
item = infix_exp[i]; /* go to next symbol of infix expression */
} /* while loop ends here */
if(top>0)
{
cout<<"\nInvalid infix Expression.\n"; /* the it is illegeal symbol */
return;
}
}
/* main function begins */
void main()
{
char temp[100],infix[100], postfix[100]; /* declare infix string and postfix string */
int i;
IN_To_POST ip;
/* why we asked the user to enter infix expression
* in parentheses ( )
* What changes are required in porgram to
* get rid of this restriction since it is not
* in algorithm
* */
cout<<"ASSUMPTION: The infix expression contains single letter variables and single digit constants only.\n";
cout<<"\nEnter Infix expression : ";
cin>>temp;
strcpy(infix,"(");
strcat(infix,temp);
strcat(infix,")");
ip.InfixToPostfix(infix,postfix); /* call to convert */
cout<<"Postfix Expression: "<<postfix<<endl; /* print postfix expression */
getch();
}
/*Output
First Run:
Enter Infix expression : A+(B*C-(D/E^F)*G)*H
Postfix Expression: ABC*DEF^/G*-H*+
*/