-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path227.basic-calculator-ii.cpp
96 lines (91 loc) · 1.88 KB
/
227.basic-calculator-ii.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
* @lc app=leetcode id=227 lang=cpp
*
* [227] Basic Calculator II
*
* https://leetcode.com/problems/basic-calculator-ii/description/
*
* algorithms
* Medium (34.40%)
* Total Accepted: 125.7K
* Total Submissions: 365.6K
* Testcase Example: '"3+2*2"'
*
* Implement a basic calculator to evaluate a simple expression string.
*
* The expression string contains only non-negative integers, +, -, *, /
* operators and empty spaces . The integer division should truncate toward
* zero.
*
* Example 1:
*
*
* Input: "3+2*2"
* Output: 7
*
*
* Example 2:
*
*
* Input: " 3/2 "
* Output: 1
*
* Example 3:
*
*
* Input: " 3+5 / 2 "
* Output: 5
*
*
* Note:
*
*
* You may assume that the given expression is always valid.
* Do not use the eval built-in library function.
*
*
*/
class Solution {
public:
bool isnum(char c){
return c >= '0' && c <= '9';
}
void removespace(int& i, string& s){
while(i<s.size() && s[i] == ' ')
i++;
}
int nextnum(int& i, string& s){
int mul = (s[i]=='-'?-1:1);
if(!isnum(s[i])) i++;
removespace(i, s);
int num = 0;
while(i<s.size() && isnum(s[i]))
num = num*10+(s[i++]-'0');
return num*mul;
}
int calculate(string s) {
if(s.size() == 0) return 0;
int i = 0;
while(i<s.size() && s[i] == ' ')
i++;
stack<int> st;
while(i<s.size()){
removespace(i, s);
if(s[i] == '*'){
i++;
int top = st.top(); st.pop();
st.push(top*nextnum(i, s));
}else if(s[i] == '/'){
i++;
int top = st.top(); st.pop();
st.push(top/nextnum(i, s));
}else if(s[i] == '+' || s[i] == '-' || isnum(s[i])){
st.push(nextnum(i, s));
}
}
int ans = 0;
while(!st.empty())
ans += st.top(), st.pop();
return ans;
}
};