Valid operators are +, -, *, and /. Each operand may be an integer or another expression.
Note that division between two integers should truncate toward zero.
It is guaranteed that the given RPN expression is always valid. That means the expression would always evaluate to a result, and there will not be any division by zero operation.
tokens[i] is either an operator: "+", "-", "*", or "/", or an integer in the range [-200, 200].
ac
// basic knowledge, stack
class Solution {
public int evalRPN(String[] tokens) {
// edge cases
// if (tokens.length == 0) return -1;
// stack store number
Stack<Integer> stack = new Stack<Integer>();
// walk list
for (int i = 0; i < tokens.length; i++) {
int res = 1;
if (tokens[i].equals("+") || tokens[i].equals("-")
|| tokens[i].equals("*") || tokens[i].equals("/")) {
int operand = stack.pop();
int number = stack.pop();
switch (tokens[i]){
case "+":
res = number + operand;
break;
case "-":
res = number - operand;
break;
case "*":
res = number * operand;
break;
case "/":
res = number / operand;
break;
}
} else {
res = Integer.parseInt(tokens[i]);
}
stack.push(res);
}
// return
return stack.pop();
}
}
// walk list, if number push to stack, else pop 2 numbers from stack -> calculate -> push back to stack
// stack1: 4 13 5
wrap operation in a helper function.
class Solution {
public int evalRPN(String[] tokens) {
// edge cases
if (tokens == null || tokens.length == 0) return 0;
Stack<Integer> stack = new Stack<>();
for (String s : tokens) {
if (s.equals("+") || s.equals("-") || s.equals("*") || s.equals("/")) {
int val2 = stack.pop();
int val1 = stack.pop();
stack.push(operate(val1, s, val2));
} else {
stack.push(Integer.parseInt(s));
}
}
return stack.pop();
}
private int operate(int val1, String oper, int val2) {
int res = 0;
if (oper.equals("+")) res = val1 + val2;
else if (oper.equals("-")) res = val1 - val2;
else if (oper.equals("*")) res = val1 * val2;
else if (oper.equals("/")) res = val1 / val2;
return res;
}
}