-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevaluateRPN.cc
56 lines (50 loc) · 1.15 KB
/
evaluateRPN.cc
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
int strtoint(string str)
{
int res;
bool isnegtive;
res = 0;
isnegtive = false;
int i = 0;
if (str[i] == '-') {
isnegtive = true;
i++;
}
while (i < str.size()) {
res = res * 10 + str[i] - '0';
i++;
}
if (isnegtive)
res = -res;
return res;
}
int evalRPN(vector<string>& tokens)
{
int res;
int loperand, roperand;
stack<int> stk;
res = 0;
for (vector<string>::iterator it = tokens.begin();
it != tokens.end(); it++)
{
if ( *it == "+" || *it == "-" || *it == "*" || *it == "/")
{
roperand = stk.top();
stk.pop();
loperand = stk.top();
stk.pop();
if (*it == "+")
res = loperand + roperand;
else if (*it == "-")
res = loperand - roperand;
else if (*it == "*")
res = loperand * roperand;
else
res = loperand / roperand;
stk.push(res);
} else {
stk.push(strtoint(*it));
}
}
res = stk.top();
return res;
}