-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBasicCalculatorII.java
61 lines (52 loc) · 1.77 KB
/
BasicCalculatorII.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
/*
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.
You may assume that the given expression is always valid.
Some examples:
"3+2*2" = 7
" 3/2 " = 1
" 3+5 / 2 " = 5
Note: Do not use the eval built-in library function.
*/
import java.util.*;
public class BasicCalculatorII {
public static int calculate(String s) {
if(s.length() == 1) return s.charAt(0) - '0';
Stack<Integer> st = new Stack<>();
int num = 0;
char sign = '+'; // store the last sign before current operands
for(int i = 0; i< s.length(); i++){
if(Character.isDigit(s.charAt(i))){
num = num*10 + s.charAt(i) - '0';
}
if((!Character.isDigit(s.charAt(i)) && s.charAt(i) != ' ') || i == s.length()-1){ // two situation for cal, one: reach the next operator,
//two: reach the end.
if(sign == '+'){
st.push(num);
}else if(sign == '-'){
st.push(-num);
}else if(sign == '*'){
int num0 = st.pop();
st.push(num0 * num);
}else if(sign == '/'){
int num0 = st.pop();
st.push(num0/num);
}
sign = s.charAt(i);
num = 0;
}
}
int re = 0;
for(int i:st){
re += i;
}
return re;
}
public static void main(String[] args) {
String s = "1 + 2*3 + 1";
int res = calculate(s);
System.out.println("String: " + s);
System.out.println("Resulte: " + res);
return;
}
}