Evaluate Reverse Polish Notation

Medium, Stack

Question

计算Reverse Polish Notation数值表达式的值. 有效的数值运算符包括 +, -, *, /.

Examples:
["2", "1", "+", "3", "*"] -> ((2 + 1) * 3) -> 9;
["4", "13", "5", "/", "+"] -> (4 + (13 / 5)) -> 6

Notes

不会有空序列

Answer

利用stack LIFO的特点,每当发现operater 的时候处理之前的两个数,然后把处理结果推回堆栈。

class Solution(object):
    def evalRPN(self, tokens):
        """
        :type tokens: List[str]
        :rtype: int
        """
        operators = {
            '+': lambda x, y: x+y,
            '-': lambda x, y: x-y,
            '*': lambda x, y: x*y,
            '/': lambda x, y: int(float(x)/ y )
        }
            
        stack = []
        for token in tokens:
            if token in operators:
                y, x = stack.pop(), stack.pop()
                stack.append(operators[token](x,y))
            else:
                stack.append(int(token))
        return stack.pop()
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容