首页 > 其他 > 详细

[LeetCode]Evaluate Reverse Polish Notation

时间:2015-01-04 10:08:12      阅读:256      评论:0      收藏:0      [点我收藏+]

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

public class Solution {
	public int evalRPN(String[] tokens) {
		Stack<Integer> stack = new Stack<Integer>();
		for (int i = 0; i < tokens.length; i++) {
			if (tokens[i].equals("+")) {
				int a = stack.pop();
				int b = stack.pop();
				int res = b + a;
				stack.push(res);
			} else if (tokens[i].equals("-")) {
				int a = stack.pop();
				int b = stack.pop();
				int res = b - a;
				stack.push(res);
			} else if (tokens[i].equals("*")) {
				int a = stack.pop();
				int b = stack.pop();
				int res = b * a;
				stack.push(res);
			} else if (tokens[i].equals("/")) {
				int a = stack.pop();
				int b = stack.pop();
				int res = b / a;
				stack.push(res);
			} else {
				stack.push(Integer.parseInt(tokens[i]));
			}
		}
		return stack.peek();
	}
}




[LeetCode]Evaluate Reverse Polish Notation

原文:http://blog.csdn.net/guorudi/article/details/42368445

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!