-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathBasicCalculatorII227.java
73 lines (65 loc) · 1.69 KB
/
BasicCalculatorII227.java
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
/**
* 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.
*/
public class BasicCalculatorII227 {
public int calculate(String s) {
char[] chars = s.toCharArray();
int N = s.length();
int res = 0;
int i = 0;
while (i < N && chars[i] == ' ') i++;
int j = getNum(chars, i);
int num = Integer.valueOf(s.substring(i, j));
i = j;
while (i < N) {
while (i < N && chars[i] == ' ') i++;
if (i == N) break;
char op = chars[i];
i++;
while (i < N && chars[i] == ' ') i++;
if (i == N) break;
j = getNum(chars, i);
int curr = Integer.valueOf(s.substring(i, j));
i = j;
if (op == '+') {
res += num;
num = curr;
} else if (op == '-') {
res += num;
num = -curr;
} else if (op == '*') {
num *= curr;
} else {
num /= curr;
}
}
return res + num;
}
private int getNum(char[] chars, int i) {
int j = i;
while (j < chars.length && Character.isDigit(chars[j])) {
j++;
}
return j;
}
}