-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevaluate-reverse-polish-notation.cpp
44 lines (40 loc) · 1.19 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
44
/**
* Evaluate the value of an arithmetic expression in Reverse Polish Notation.
Valid operators are+,-,*,/. Each operand may be an integer or another expression.
Some examples:
["2", "1", "+", "3", "*"] -> ((2 + 1) * 3) -> 9
["4", "13", "5", "/", "+"] -> (4 + (13 / 5)) -> 6
*/
class Solution {
public:
int evalRPN(vector<string> &tokens) {
stack<int> numbers;
for(auto token : tokens)
{
if(token == "+" || token == "-" || token == "*" || token == "/")
{
int a,b,res;
b=numbers.top();numbers.pop();
a=numbers.top();numbers.pop();
if(token == "+")
res=a+b;
else if(token == "-")
res=a-b;
else if(token == "*")
res=a*b;
else
res=a/b;
numbers.push(res);
}
else
{
stringstream ss;
ss<<token;
int temp;
ss>>temp;
numbers.push(temp);
}
}
return numbers.top();
}
};