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

150 Evaluate Reverse Polish Notation 逆波兰表达式求值

时间:2018-04-06 15:20:29      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:表示   ble   运算   包括   highlight   body   token   符号   desc   

求在 逆波兰表示法 中算术表达式的值。
有效的运算符号包括 +, -, *, / 。每个运算对象可以是整数,也可以是另一个逆波兰计数表达。
例如:
  ["2", "1", "+", "3", "*"] -> ((2 + 1) * 3) -> 9
  ["4", "13", "5", "/", "+"] -> (4 + (13 / 5)) -> 6
详见:https://leetcode.com/problems/evaluate-reverse-polish-notation/description/

class Solution {
public:
    int evalRPN(vector<string> &tokens) {
        if(tokens.size() == 0)
            return 0;
        stack<int> stk;
        for(int i = 0; i < tokens.size(); ++i)
        {
            string s = tokens[i];
            if(s == "+" || s == "-" || s == "*" || s == "/")
            {
                if(stk.size() < 2)
                    return 0;
                int num2 = stk.top(); 
                stk.pop();
                int num1 = stk.top(); 
                stk.pop();
                int result = 0;
                 
                if(s == "+")
                    result = num1 + num2;
                else if(s == "-")
                    result = num1 - num2;
                else if(s == "*")
                    result = num1 * num2;
                else if(s == "/")
                    result = num1 / num2;
                stk.push(result);
            }
            else
            {
                stk.push(stoi(s));
            }  
        }
        return stk.top();
    }
};

 

150 Evaluate Reverse Polish Notation 逆波兰表达式求值

标签:表示   ble   运算   包括   highlight   body   token   符号   desc   

原文地址:https://www.cnblogs.com/xidian2014/p/8727606.html

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