Evaluate the value of an arithmetic expression in Reverse Polish Notation.
Valid operators are +, -, *, /
. Each operand may be an integer
or another expression
.
Note:
always valid
. That means the expression would always evaluate to a result and there won't be any divide by zero operation.Example 1:
Input: ["2", "1", "+", "3", "*"]Output: 9Explanation: ((2 + 1) * 3) = 9
Example 2:
Input: ["4", "13", "5", "/", "+"]Output: 6Explanation: (4 + (13 / 5)) = 6
Example 3:
Input: ["10", "6", "9", "3", "+", "-11", "*", "/", "*", "17", "+", "5", "+"]Output: 22Explanation:((10 * (6 / ((9 + 3) * -11))) + 17) + 5= ((10 * (6 / (12 * -11))) + 17) + 5= ((10 * (6 / -132)) + 17) + 5= ((10 * 0) + 17) + 5= (0 + 17) + 5= 17 + 5= 22
栈的使用, 思路大致如下:
稍加留意的是, 需要对 / 运算进行取整操作;
/*** @param {string[]} tokens* @return {number}*/var evalRPN = function(tokens) {const stack = []const operateTag = ['+', '-', '*', '/']for (let i = 0; i < tokens.length; i++) {const operateTagIndex = operateTag.indexOf(tokens[i])if (operateTagIndex === -1) {stack.push(tokens[i])} else {const y = stack.pop()const x = stack.pop()let resultif (operateTagIndex === 0) {result = Number(x) + Number(y)} else if (operateTagIndex === 1) {result = Number(x) - Number(y)} else if (operateTagIndex === 2) {result = Number(x) * Number(y)} else if (operateTagIndex === 3) {result = parseInt((Number(x) / Number(y)), 10)}stack.push(result)}}return stack[0]}
20、71