-
Notifications
You must be signed in to change notification settings - Fork 8
/
basic-calculator.cpp
77 lines (73 loc) · 1.71 KB
/
basic-calculator.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
// Implement a basic calculator to evaluate a simple expression string.
//
// The expression string may contain open ( and closing parentheses ), the plus + or minus sign -, non-negative integers and empty spaces .
//
// Example 1:
//
//
// Input: "1 + 1"
// Output: 2
//
//
// Example 2:
//
//
// Input: " 2-1 + 2 "
// Output: 3
//
// Example 3:
//
//
// Input: "(1+(4+5+2)-3)+(6+8)"
// Output: 23
// Note:
//
//
// You may assume that the given expression is always valid.
// Do not use the eval built-in library function.
//
//
class Solution {
public:
int calculate(string s) {
stack<int> scale;
int ss = 1;
int old = 0;
int cur = 0;
int op = 1;
for (auto&& c : s) {
if (c == ' ') continue;
if (isdigit(c)) {
cur *= 10;
cur += (c-'0');
} else {
old += (cur * op * ss);
cur = 0;
switch (c) {
case '+':
op = 1;
break;
case '-':
op = -1;
break;
case '(':
scale.push(op);
ss *= op;
op = 1;
break;
case ')':
ss *= scale.top();
scale.pop();
break;
default:
break;
}
}
}
// stop = 1;
// if (!scale.empty()) stop = scale.top();
// old += (cur * op * stop);
old += (cur * op);
return old;
}
};