-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEvaluate Reverse Polish Notation.cpp
43 lines (43 loc) · 1.14 KB
/
Evaluate Reverse Polish Notation.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
class Solution {
public:
int evalRPN(vector<string>& tokens) {
stack<int> st;
int i = 0;
st.push(stoi(tokens[i++]));
while(i < tokens.size()){
if(tokens[i] == "+"){
int num1 = st.top();
st.pop();
int num2 = st.top();
st.pop();
st.push(num1+num2);
}
else if(tokens[i] == "-"){
int num2 = st.top();
st.pop();
int num1 = st.top();
st.pop();
st.push(num1-num2);
}
else if(tokens[i] == "*"){
int num1 = st.top();
st.pop();
int num2 = st.top();
st.pop();
st.push(num1*num2);
}
else if(tokens[i] == "/"){
int num2 = st.top();
st.pop();
int num1 = st.top();
st.pop();
st.push(num1/num2);
}
else{
st.push(stoi(tokens[i]));
}
i++;
}
return st.top();
}
};