码迷,mamicode.com
首页 > 编程语言 > 详细

LeetCode-Evaluate Reverse Polish Notation (Python)

时间:2017-07-22 16:54:04      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:pac   order   word   sel   elf   class   _id   turn   add   

【问题】

Evaluate the value of an arithmetic expression in Reverse Polish Notation.

Valid operators are +-*/. Each operand may be an integer or another expression.

Some examples:

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

【代码】

class Solution:
    # @param tokens, a list of string
    # @return an integer
    def evalRPN(self, tokens):
        stack = []
        for item in tokens:
            if item not in ("+", "-", "*", "/"):
                stack.append(int(item))
            else:
                op2 = stack.pop()
                op1 = stack.pop()
                if item == "+":
                    stack.append(op1 + op2)
                elif item == "-":
                    stack.append(op1 - op2)
                elif item == "*":
                    stack.append(op1 * op2)
                elif item == "/":
                    stack.append(int(op1 *1.0 / op2))
        return stack[0]


LeetCode-Evaluate Reverse Polish Notation (Python)

标签:pac   order   word   sel   elf   class   _id   turn   add   

原文地址:http://www.cnblogs.com/mthoutai/p/7221424.html

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