码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode——150. 逆波兰表达式求值

时间:2019-11-02 15:25:05      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:tin   solution   执行   color   表达式求值   obj   list   etc   app   

class Solution(object):
    def evalRPN(self, tokens):
        """
        :type tokens: List[str]
        :rtype: int
        """
        stack=[]
        for i in tokens:
            if i not in +-*/:
                stack.append(i)
            else:
                a=stack.pop()
                b=stack.pop()
                if i==+:
                    c=int(a)+int(b)
                    stack.append(c)
                if i==-:
                    c = int(b) - int(a)
                    stack.append(c)
                if i==*:
                    c = int(a) * int(b)
                    stack.append(c)
                if i==/:
                    c = int(b) / int(a)
                    if int(a)*int(b)<0 and int(b)!=c*int(a):
                        c=c+1
                    stack.append(c)
        return stack.pop()
执行用时 :60 ms, 在所有 python 提交中击败了92.56%的用户
内存消耗 :13.7 MB, 在所有 python 提交中击败了6.25%的用户
 
——2019.11.2

leetcode——150. 逆波兰表达式求值

标签:tin   solution   执行   color   表达式求值   obj   list   etc   app   

原文地址:https://www.cnblogs.com/taoyuxin/p/11782379.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!