-
Notifications
You must be signed in to change notification settings - Fork 0
/
ExpressionConversion.cpp
320 lines (280 loc) · 7.41 KB
/
ExpressionConversion.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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
#include<iostream>
#include<string>
#include<cstring>
#include<stack>
using namespace std;
int getWeight(char ch) {
switch (ch) {
case '^':
return 3;
case '/':
case '*':
return 2;
case '+':
case '-':
return 1;
default :
return 0;
}
}
void infix2postfix(char infix[], char postfix[], int size) {
stack<char> s;
int weight;
int i = 0;
int k = 0;
char ch;
while (i < size) {
ch = infix[i];
if (ch == '(') {
s.push(ch);
i++;
continue;
}
if (ch == ')') {
while (!s.empty() && s.top() != '(') {
postfix[k++] = s.top();
s.pop();
}
if (!s.empty()) {
s.pop();
}
i++;
continue;
}
weight = getWeight(ch);
if (weight == 0) {
postfix[k++] = ch;
} else {
if (s.empty()) {
s.push(ch);
} else {
while (!s.empty() && s.top() != '(' && weight <= getWeight(s.top())) {
postfix[k++] = s.top();
s.pop();
}
s.push(ch);
}
}
i++;
}
while (!s.empty()) {
postfix[k++] = s.top();
s.pop();
}
postfix[k] = 0;
}
void infix2prefix(char infix[], char prefix[], int size) {
stack<char> s;
int weight;
int i = 0;
int k = 0;
char ch;
char infix0[size];
int m = 0, n = size - 1;
while (m < size) {
if (infix[n] == '(')
infix0[m] = ')';
else if (infix[n] == ')')
infix0[m] = '(';
else
infix0[m] = infix[n];
m++;
n--;
}
infix0[m] = 0;
while (i < size) {
ch = infix0[i];
if (ch == '(') {
s.push(ch);
i++;
continue;
}
if (ch == ')') {
while (!s.empty() && s.top() != '(') {
prefix[k++] = s.top();
s.pop();
}
if (!s.empty()) {
s.pop();
}
i++;
continue;
}
weight = getWeight(ch);
if (weight == 0) {
prefix[k++] = ch;
} else {
if (s.empty()) {
s.push(ch);
} else {
while (!s.empty() && s.top() != '(' && weight < getWeight(s.top())) {
prefix[k++] = s.top();
s.pop();
}
s.push(ch);
}
}
i++;
}
while (!s.empty()) {
prefix[k++] = s.top();
s.pop();
}
prefix[k] = 0;
}
string postfix2infix(char postfix1[], int size) {
string infix1;
stack<string> s;
int k = 0;
while (k < size) {
char ch = postfix1[k];
int weight = getWeight(ch);
if (weight == 0) {
string e;
e = ch;
s.push(e);
} else {
string operand_2 = s.top();
s.pop();
string operand_1 = s.top();
s.pop();
s.push("(" + operand_1 + ch + operand_2 + ")");
}
k++;
}
infix1 = s.top();
s.pop();
return infix1;
}
string postfix2prefix(char postfix1[], int size) {
string prefix1;
stack<string> s;
int k = 0;
while (k < size) {
char ch = postfix1[k];
int weight = getWeight(ch);
if (weight == 0) {
string e;
e = ch;
s.push(e);
} else {
string operand_2 = s.top();
s.pop();
string operand_1 = s.top();
s.pop();
s.push(ch + operand_1 + operand_2);
}
k++;
}
prefix1 = s.top();
s.pop();
return prefix1;
}
string prefix2infix(char prefix1[], int size) {
string infix1;
stack<string> s;
int k = size - 1;
while (k >= 0) {
char ch = prefix1[k];
int weight = getWeight(ch);
if (weight == 0) {
string e;
e = ch;
s.push(e);
} else {
string operand_1 = s.top();
s.pop();
string operand_2 = s.top();
s.pop();
s.push("(" + operand_1 + ch + operand_2 + ")");
}
k--;
}
infix1 = s.top();
s.pop();
return infix1;
}
string prefix2postfix(char prefix1[], int size) {
string postfix1;
stack<string> s;
int k = size - 1;
while (k >= 0) {
char ch = prefix1[k];
int weight = getWeight(ch);
if (weight == 0) {
string e;
e = ch;
s.push(e);
} else {
string operand_1 = s.top();
s.pop();
string operand_2 = s.top();
s.pop();
s.push(operand_1 + operand_2 + ch);
}
k--;
}
postfix1 = s.top();
s.pop();
return postfix1;
}
int main() {
char ch;
int c, size;
char infix[20], postfix[20], prefix[20], postfix1[20], prefix1[20];
string infix1, prefix2, postfix2;
do {
cout << "\n================================EXPRESSION CONVERSION================================";
cout << "\n1. Infix to other";
cout << "\n2. Postfix to other";
cout << "\n3. Prefix to other";
cout << "\n4. Exit";
cout << "\nEnter your choice: ";
cin >> c;
if (c != 4) {
switch (c) {
case 1:
cout << "\nInsert infix expression: ";
cin >> infix;
size = strlen(infix);
infix2postfix(infix, postfix, size);
infix2prefix(infix, prefix, size);
cout << "\nInfix expression: " << infix;
cout << "\nPostfix expression: " << postfix;
cout << "\nPrefix expression: ";
for (int i = strlen(prefix) - 1; i >= 0; i--) {
cout << prefix[i];
}
cout << endl << endl;
break;
case 2:
cout << "\nInsert postfix expression: ";
cin >> postfix1;
size = strlen(postfix1);
infix1 = postfix2infix(postfix1, size);
prefix2 = postfix2prefix(postfix1, size);
cout << "\nPostfix expression: " << postfix1;
cout << "\nInfix expression: " << infix1;
cout << "\nPrefix expression: " << prefix2;
cout << endl << endl;
break;
case 3:
cout << "\nInsert prefix expression: ";
cin >> prefix1;
size = strlen(prefix1);
infix1 = prefix2infix(prefix1, size);
postfix2 = prefix2postfix(prefix1, size);
cout << "\nPrefix expression: " << prefix1;
cout << "\nInfix expression: " << infix1;
cout << "\nPostfix expression: " << postfix2;
cout << endl << endl;
break;
case 4:
break;
}
cout << "Do you want to continue? (y/n): ";
cin >> ch;
}
} while (ch == 'y');
return 0;
}