-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculate.cpp
42 lines (39 loc) · 1.08 KB
/
calculate.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
#include<iostream>
#include<string>
#include<stack>
using namespace std;
int calculate(string s) {
//全部做 1 元计算
int result = 0;
stack<int> symbol; //使用 1 和 -1 作为符号
symbol.push(1);
int i = 0, sign = 1;
while(i < s.size()){
if(s[i] == ' '){
++i;
}else if(s[i] == '+'){
sign = symbol.top();
++i;
}else if(s[i] == '-'){
sign = - symbol.top();
++i;
}else if(s[i] == '('){
symbol.push(sign); // 只有遇到括号时才会把符号入栈;栈中最少有个 + 号
++i;
}else if(s[i] == ')'){
symbol.pop();
++i;
}else{
int num = 0;
while(i < s.size() && s[i] >= '0' && s[i] <= '9'){
num = num * 10 + s[i] - '0';
}
result += sign * num;
}
}
return result;
}
int main()
{
return 0;
}