-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGFG_InfxToPostFix.cpp
102 lines (90 loc) · 2.44 KB
/
GFG_InfxToPostFix.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
/*
https://practice.geeksforgeeks.org/problems/infix-to-postfix-1587115620/1#
Infix to Postfix
*/
// { Driver Code Starts
// C++ implementation to convert infix expression to postfix
#include<bits/stdc++.h>
using namespace std;
// } Driver Code Ends
class Solution
{
public:
//Function to convert an infix expression to a postfix expression.
string infixToPostfix(string s)
{
string ans="";
stack<char> optst; //operator stack
for(char c: s)
{
// if it is character
// if(c >= 'a' && c<= 'z' || c>= 'A' && c<='Z')
if(c >= 'a' && c<= 'z')
{
ans+=c;
}
//if it is operator
else
{
if(c == '(')
optst.push(c);
else if (c == ')')
{
while(!optst.empty() && optst.top() != '(')
{
ans += optst.top();
optst.pop();
}
optst.pop(); // pop (
}
// The order of precedence is: ^ greater than * equals to / greater than + equal to -
else
{
while(!optst.empty() && precedence(c) <= precedence(optst.top()) && isLeftToRightAssociative(c))
{
ans += optst.top();
optst.pop();
}
optst.push(c);
}
}// else op
}// for c
while(!optst.empty())
{
ans += optst.top();
optst.pop();
}
return ans;
}//end
int precedence(char ch)
{
if(ch == '+' || ch == '-')
return 1;
else if(ch == '*' || ch == '/')
return 2;
else if(ch == '^')
return 3;
else
return -1;
}// end precedence
bool isLeftToRightAssociative(char ch)
{ return (ch != '^');
}
};
// { Driver Code Starts.
//Driver program to test above functions
int main()
{
int t;
cin>>t;
cin.ignore(INT_MAX, '\n');
while(t--)
{
string exp;
cin>>exp;
Solution ob;
cout<<ob.infixToPostfix(exp)<<endl;
}
return 0;
}
// } Driver Code Ends