-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathInfixtoPostfix.cpp
More file actions
104 lines (97 loc) · 1.66 KB
/
InfixtoPostfix.cpp
File metadata and controls
104 lines (97 loc) · 1.66 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
#include<iostream>
#include<stack>
using namespace std;
bool isOperator(char c)
{
if(c=='+' || c=='-' || c=='/' || c=='*' || c=='^')
{
return true;
}
else
{
return false;
}
}
int precedence( char c)
{
if(c=='^')
return 3;
else if(c=='*' || c=='/')
return 2;
else if(c=='+' || c=='-')
return 1;
else
return -1;
}
string InfixtoPostfix(stack<char> s, string infix)
{
string postfix;
for(int i=0;i<infix.length();i++)
{
if((infix[i] >='a' && infix[i]<='z') || ( infix[i] >='A' && infix[i]<='Z'))
{
postfix+=infix[i];
}
else if(infix[i]=='(')
{
s.push(infix[i]);
}
else if(infix[i]==')')
{
while((s.top()!='(') && (!s.empty()))
{
char temp=s.top();
postfix+=temp;
s.pop();
}
if(s.top()=='(')
{
s.pop();
}
}
else if(isOperator(infix[i]))
{
if(s.empty())
{
s.push(infix[i]);
}
else
{
if(precedence(infix[i])>precedence(s.top()))
{
s.push(infix[i]);
}
else if((precedence(infix[i])==precedence(s.top())) && (infix[i]=='^') )
{
s.push(infix[i]);
}
else
{
while((!s.empty())&&( precedence(infix[i])<=precedence(s.top())))
{
postfix+=s.top();
s.pop();
}
s.push(infix[i]);
}
}
}
}
while(!s.empty())
{
postfix+=s.top();
s.pop();
}
return postfix;
}
int main()
{
string infix,postfix_exp;
cout<<"Enter a Infix Expression : "<<endl;
cin>>infix;
stack <char> s;
cout<<"Infix Expression: "<<infix<<endl;
postfix_exp=InfixtoPostfix(s,infix);
cout<<endl<<"Postfix Expression: "<<postfix_exp;
return 0;
}