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 .
You may assume that the given expression is always valid.
Some examples:
"1 + 1" = 2
" 2-1 + 2 " = 3
"(1+(4+5+2)-3)+(6+8)" = 23
Note: Do not use the eval built-in library function.
Solution(Others)
public static int calculate(String s) {
int len = s.length(), sign = 1, result = 0;
Stack<Integer> stack = new Stack<Integer>();
for (int i = 0; i < len; i++) {
if (Character.isDigit(s.charAt(i))) {
int sum = s.charAt(i) - '0';
while (i + 1 < len && Character.isDigit(s.charAt(i + 1))) {
sum = sum * 10 + s.charAt(i + 1) - '0';
i++;
}
result += sum * sign;
} else if (s.charAt(i) == '+')
sign = 1;
else if (s.charAt(i) == '-')
sign = -1;
else if (s.charAt(i) == '(') {
stack.push(result);
stack.push(sign);
result = 0;
sign = 1;
} else if (s.charAt(i) == ')') {
result = result * stack.pop() + stack.pop();
}
}
return result;
}
Solution
public class Solution {
public int calculate(String s) {
Stack<Long> prev = new Stack<Long>();
Stack<Boolean> sign = new Stack<Boolean>();
long ans = 0;
boolean plus = true;
for(int i = 0; i < s.length(); i++) {
if(s.charAt(i) == ' ') continue;
if(s.charAt(i) == '+' || s.charAt(i) == '-') {
plus = (s.charAt(i) == '+');
continue;
}
if(s.charAt(i) == '(' || s.charAt(i) == ')') {
if(s.charAt(i) == '(') {
prev.push(ans);
sign.push(plus);
ans = 0;
plus = true;
} else {
long tmp = prev.pop() + (sign.pop() ? ans : -ans);
ans = tmp;
}
continue;
}
// a number, read all of it
int start = i;
while(i < s.length() && Character.isDigit(s.charAt(i))) i++;
int num = Integer.parseInt(s.substring(start, i));
ans += plus ? num : -num;
i--;
}
return (int)ans;
}
}