-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstack_rpn_exp.cpp
More file actions
39 lines (32 loc) · 806 Bytes
/
Copy pathstack_rpn_exp.cpp
File metadata and controls
39 lines (32 loc) · 806 Bytes
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
//RPN Expression
//https://ide.geeksforgeeks.org/3TVJxK0rkr
#include <bits/stdc++.h>
using namespace std;
int RPNExpression(string &s){
stack<int> x;
for(int i=0; i<s.length(); i++){
if(s[i] == "*" || s[i] == "/" || s[i] == "+" || s[i] == "-"){
int m = x.top();
x.pop();
int n = x.top();
x.pop();
if(s[i] == '+')
x.push(m + n);
else if(s[i] == '-')
x.push(m - n);
else if(s[i] == '*')
x.push(m * n);
else if(s[i] == '/')
x.push(m / n);
}
else{
x.push(stoi(s[i]));
}
}
cout<<x.top()<<"\n";
}
int main() {
string y = "34+2x1+";
RPNExpression(y);
return 0;
}