-
Notifications
You must be signed in to change notification settings - Fork 11
/
infixToPrefix.cpp
126 lines (111 loc) · 2.42 KB
/
infixToPrefix.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
#include <bits/stdc++.h>
#include "MYSTACK.h"
using namespace std;
int precisionCalc(char c)
{
if (c == '^')
{
return 3;
}
else if (c == '/' || c == '*')
{
return 2;
}
else if (c == '+' || c == '-')
{
return 1;
}
else
return -1;
}
string infixToPrefix(string chk)
{
reverse(chk.begin(), chk.end()); // ) --> Opening AND ( --> Closing
Stack<char> st;
string result;
for (int i = 0; i < chk.length(); i++)
{
if ((chk[i] >= 'a' && chk[i] <= 'z') || (chk[i] >= 'A' && chk[i] <= 'Z'))//(chk[i] >= '0' && chk[i] <= '9') //
{
result += chk[i];
}
else if (chk[i] == ')')
{
st.push(chk[i]);
}
else if (chk[i] == '(')
{
while (!st.empty() && st.Top() != ')')
{
result += st.pop();
}
if (!st.empty())
st.pop();
}
else
{
while (!st.empty() && precisionCalc(st.Top()) >= precisionCalc(chk[i]))
{
result += st.pop();
}
st.push(chk[i]);
}
}
while(!st.empty()){
result+=st.pop();
}
reverse(result.begin(),result.end());
return result;
}
int prefixEvaluation(string chk)
{
Stack<int> st;
for (int i = chk.length() - 1; i >= 0; i--)
{
if (chk[i] >= '0' && chk[i] <= '9') // chk[i] 0 to 9 --> Operand
{
st.push(chk[i] - '0');
}
else // chk[i] ---> Operator
{
int a = st.pop();
int b = st.pop();
switch (chk[i])
{
case '+':
st.push(a + b);
break;
case '-':
st.push(a - b);
break;
case '*':
st.push(a * b);
break;
case '/':
st.push(a / b);
break;
case '^':
st.push(pow(a, b));
break;
default:
break;
}
}
}
return st.Top();
}
/*
+*423
-+7*45+20
(7+(4*5))-(2+0)
((A^B*C)-D)+((E/F)/(G+H))
*/
int main()
{
string infix = "((A^B*C)-D)+((E/F)/(G+H))";
string prefix;
prefix = infixToPrefix(infix);
cout << endl << prefix << endl;
// << prefixEvaluation(prefix) << endl
// << endl;
}