-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrefixtoPostfix.cpp
More file actions
109 lines (102 loc) · 1.8 KB
/
PrefixtoPostfix.cpp
File metadata and controls
109 lines (102 loc) · 1.8 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
#include <bits/stdc++.h>
using namespace std;
struct Stack
{
string ele[30];
int top;
};
void push(Stack &st, string s1)
{
st.top++;
st.ele[st.top] = s1;
}
string pop(Stack &st)
{
return st.ele[st.top--];
}
int precedence(char c)
{
if (c == '^')
{
return 3;
}
else if (c == '*' || c == '/')
{
return 2;
}
else if (c == '+' || c == '-')
{
return 1;
}
else
{
return -1;
}
}
void infinixtopostfix(string post)
{
stack<char> st;
string result;
for (int i = 0; i < post.length(); i++)
{
char c = post[i];
if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9'))
{
result += c;
}
else if (c == '(')
{
st.push(c);
}
else if (c == ')')
{
while (st.top() != '(')
{
result += st.top();
st.pop();
}
st.pop();
}
else
{
while (!st.empty() && precedence(post[i]) <= precedence(st.top()))
{
result += st.top();
st.pop();
}
st.push(c);
}
}
while (!st.empty())
{
result += st.top();
st.pop();
}
cout << result << endl;
}
int main()
{
Stack s;
s.top = -1;
string c;
cin >> c;
int i = c.size() - 1;
while (i >= 0)
{
if (c[i] >= 'A' && c[i] <= 'Z')
{
char c1 = c[i];
char ch[1] = {c1};
push(s, ch);
}
else
{
string s1 = pop(s);
string s2 = pop(s);
push(s, s1 + c[i] + s2);
}
i--;
}
string post = pop(s);
infinixtopostfix(post);
}