forked from Bibeknam/programming-techniques
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfix_to_postfix.cpp
306 lines (303 loc) · 7.92 KB
/
infix_to_postfix.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
/****************************************************************
Program: Conversion of Infix to Postfix String and Evaluation
Language: C/C++
by Bibek Subedi
June 13, 2011
Operators Used
1. '+' For addition
2. '-' For Subtraction
3. '*' For Multiplication
4. '/' For Division
5. '^' For Exponentiation
Program Limitations
* This program Only process single digit operations
* Can't handle unary operation
* Only process left to right associativity
***************************************************/
#include <iostream>
#include <cmath>
#include <cstdlib>
#include <string>
#define MAX_SIZE 20
using namespace std;
template <class T>
class Stack {
private:
T item[MAX_SIZE];
int top;
public:
Stack()
{
top = -1;
}
void push(T data)
{
if (!this->is_full())
item[++top] = data;
else {
cout << "Stack Error" << endl;
exit(10);
}
}
T pop()
{
if (!this->is_empty())
return item[top--];
else {
cout << "Stack is Empty" << endl;
exit(11);
}
}
int size()
{
return top + 1;
}
bool is_empty()
{
if (top == -1)
return true;
else
return false;
}
bool is_full()
{
if (top == MAX_SIZE - 1)
return true;
else
return false;
}
void display()
{
for (int i = 0; i < this->size(); i++) {
cout << item[i] << " ";
}
cout << endl;
}
T return_top()
{
return item[top];
}
};
class Convert {
private:
bool num_flag;
bool two_digit_flag;
public:
Convert();
string return_with_bracket(string infix);
void to_Postfix(string infix, char postfix[]);
bool prcd(char op1, char op2);
int isOperand(char op);
int isOperator(char op);
bool return_flag()
{
return num_flag;
}
};
Convert::Convert()
{
this->num_flag = false;
this->two_digit_flag = false;
}
string Convert::return_with_bracket(string infix)
{
return ("(" + infix + ")");
}
bool Convert::prcd(char op1, char op2)
{
if ((op1 == '+' || op1 == '-' || op1 == '*' || op1 == '/') && op2 == '(')
return true;
if (op1 == '+' && op2 == '+')
return true;
if (op1 == '-' && op2 == '-')
return false;
if (op1 == '-' && op2 == '+')
return false;
if (op1 == '+' && op2 == '-')
return false;
if (op1 == '/' && op2 == '/')
return false;
if (op1 == '/' && (op2 == '-' || op2 == '+'))
return true;
if (op1 == '*' && (op2 == '+' || op2 == '-'))
return true;
if ((op1 == '-' || op1 == '+') && (op2 == '*' || op2 == '/'))
return false;
if ((op1 == '$' || op1 == '+') && (op2 == '*' || op2 == '/' || op2 == '-'))
return true;
if ((op1 == '-' || op1 == '+' || op1 == '*' || op1 == '/') && op2 == '^')
return false;
if (op1 == '^' && (op2 == '+' || op2 == '*' || op2 == '/' || op2 == '-'))
return false;
}
int Convert::isOperand(char op)
{
return (op >= '0' && op <= '9');
}
int Convert::isOperator(char op)
{
return (op == '+' || op == '-' || op == '/' || op == '*' || op == '^');
}
void Convert::to_Postfix(string infix, char postfix[])
{
int position, outpos = 0;
char c;
int count = 0;
char temp;
char stacktop;
Stack<char> stack;
for (position = 0; (c = infix[position]) != '\0'; position++) {
if (this->isOperand(c)) {
postfix[outpos++] = c;
this->num_flag = true;
count++;
if (count >= 2) {
this->two_digit_flag = true;
}
}
else if (this->isOperator(c)) {
count = 0;
if (isOperator(infix[position]) && isOperator(infix[position + 1])) {
cout << "\aMissing argument in between " << infix[position] << " and " << infix[position + 1]
<< " in column " << position + 1 << endl;
exit(9);
}
if (this->prcd(c, stacktop)) {
stacktop = stack.return_top();
stack.push(c);
stacktop = c;
}
else {
while (true) {
temp = stack.pop();
postfix[outpos++] = temp;
stacktop = stack.return_top();
if (prcd(c, stacktop) || stacktop == '(')
break;
}
stack.push(c);
stacktop = stack.return_top();
}
}
else if (c == '(') {
count = 0;
stack.push(c);
stacktop = stack.return_top();
}
else if (c == ')') {
count = 0;
while (1) {
if (stack.size() == 0) {
cout << "Warning!! Number of ')' is greater than '('" << endl;
exit(2);
}
temp = stack.pop();
if (temp != '(') {
postfix[outpos++] = temp;
}
else {
break;
}
}
stacktop = stack.return_top();
}
else {
cout << "Invalid input";
exit(3);
}
if (infix[position] == ')' && infix[position + 1] == '(') {
stack.push('*');
stacktop = stack.return_top();
}
}
if (stack.size() != 0) {
cout << "Warning!!Number of '(' is greater than ')'" << endl;
// exit(6);
}
if (!this->return_flag()) {
cout << "You must Enter Numeric value for calculation" << endl;
cout << "This program cannot perform operations on variables";
exit(5);
}
if (this->two_digit_flag) {
cout << "Sory! Althoug u may have entered right string" << endl;
cout << "this program is only for single digit operation" << endl;
exit(8);
}
postfix[outpos] = '\0';
}
class Evaluate {
public:
double eval(char expr[], Convert&);
double oper(int symb, double op1, double op2);
};
double Evaluate::oper(int symb, double op1, double op2)
{
switch (symb) {
case '+':
return (op1 + op2);
case '-':
return (op1 - op2);
case '*':
return (op1 * op2);
case '/':
return (op1 / op2);
case '^':
return (pow(op1, op2));
}
}
double Evaluate::eval(char expr[], Convert& convert)
{
int c, position;
char temp1;
int count = 0;
double opnd1, opnd2, value;
Stack<double> stack;
for (position = 0; (c = expr[position]) != '\0'; position++) {
if (convert.isOperand(c)) {
temp1 = double(c - '0');
stack.push(temp1);
}
else {
opnd2 = stack.pop();
if (stack.size() == 0) {
cout << "This program cannot process unary operation";
exit(1);
}
opnd1 = stack.pop();
value = oper(c, opnd1, opnd2);
stack.push(value);
}
}
if (stack.size() >= 2) {
cout << "Sory! this program cannot calculate this" << endl;
cout << "Enter +, *, /, - or ^ between bracket" << endl;
exit(4);
}
return (stack.pop());
}
int main()
{
Convert convert;
Evaluate evaluate;
string bracketted_infix;
char infix[50], postfix[50];
char choice;
while (1) {
cout << "Enter string: ";
cin >> infix;
cout << endl;
cout << "Entered String: " << infix << endl;
bracketted_infix = convert.return_with_bracket(infix);
convert.to_Postfix(bracketted_infix, postfix);
cout << "Equivalent Postfix string: " << postfix << endl;
cout << "RESULT: ";
cout << evaluate.eval(postfix, convert);
cout << "\nCalculate another string?(y/n) ";
cin >> choice;
cout << endl;
if (choice == 'n')
break;
}
return 0;
}