摘要: 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", " 阅读全文
posted @ 2013-12-06 19:50 懒猫欣 阅读(173) 评论(0) 推荐(0) 编辑