-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfix to postfix.cpp
More file actions
84 lines (67 loc) · 1.16 KB
/
Copy pathinfix to postfix.cpp
File metadata and controls
84 lines (67 loc) · 1.16 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
#include<iostream>
#include<stack>
using namespace std;
int priority (char alpha){
if (alpha == '+' || alpha == '-'){
return 1;
}
if (alpha == '*' || alpha == '/'){
return 2;
}
if (alpha == '^'){
return 3;
}
return 0;
}
string convert(string infix){
int i = 0;
string postfix = "";
stack<int>s;
while (infix[i] != '\0'){
if (infix[i] >= 'a' && infix[i] <= 'z' || infix[i] >= 'A' && infix[i] <= 'Z')
{
postfix += infix[i];
i++;
}
else if (infix[i] == '(')
{
s.push(infix[i]);
i++;
}
else if (infix[i] == ')')
{
while(s.top() != '(')
{
postfix += s.top();
s.pop();
}
s.pop();
i++;
}
else
{
while (!s.empty() && priority(infix[i]) <= priority(s.top()))
{
postfix += s.top();
s.pop();
}
s.push(infix[i]);
i++;
}
}
while (!s.empty() && s.top() != '(')
{
postfix += s.top();
s.pop();
}
return postfix;
}
int main()
{
string infix, postfix;
cout << "Enter infix expression: ";
cin >> infix;
postfix = convert(infix);
cout << "Postfix is: " << postfix;
return 0;
}