-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInfixEvaluation.cpp
94 lines (73 loc) · 2.05 KB
/
InfixEvaluation.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
#include<bits/stdc++.h>
using namespace std;
int precedence(char ch){
if(ch == '+'){
return 1;
}else if(ch == '-'){
return 1;
}else if(ch == '*'){
return 2;
}else if(ch == '/'){
return 2;
}
}
int operation(int v1,int v2,char ch){
if(ch == '+'){
return v1 + v2;
}else if(ch == '-'){
return v1 - v2;
}else if(ch == '*'){
return v1 * v2;
}else if(ch == '/'){
return v1 / v2;
}
}
int main(){
string s = "2*4+(5-3*8)";
stack<int> opnds;
stack<char> opts;
for(int i = 0 ; i < s.length() ; i++){
char ch = s[i];
if(ch == '('){
opts.push(ch);
}else if(isdigit(ch)){
opnds.push(ch - '0');
}else if(ch == ')'){
while(opts.top()!='('){
int v2 = opnds.top();
opnds.pop();
int v1 = opnds.top();
opnds.pop();
char cch = opts.top();
opts.pop();
int v = operation(v1,v2,cch);
opnds.push(v);
}
opts.pop();
}else if(ch == '+' || ch == '-' || ch == '/' || ch == '*'){
while(opts.size() > 0 && opts.top() != '(' && precedence(ch) <= precedence(opts.top()) ){
int v2 = opnds.top();
opnds.pop();
int v1 = opnds.top();
opnds.pop();
char cch = opts.top();
opts.pop();
int v = operation(v1,v2,cch);
opnds.push(v);
}
opts.push(ch);
}
}
while(opts.size() != 0){
int v2 = opnds.top();
opnds.pop();
int v1 = opnds.top();
opnds.pop();
char cch = opts.top();
opts.pop();
int v = operation(v1,v2,cch);
opnds.push(v);
}
cout<<opnds.top(); //ans would be -11 for this specific input
return 0;
}