首页 > 其他 > 详细

leetcode Evaluate Reverse Polish Notation

时间:2014-09-28 00:00:11      阅读:378      评论:0      收藏:0      [点我收藏+]
#include <iostream>
#include <cstdlib>
#include <string>
#include <algorithm>
#include <vector>
#include <stack>
#include <queue>
using namespace std;

int evalRPN(vector<string> &tokens) {
    stack<int> value;
    int i = 0;
    for(i = 0; i < tokens.size(); i++){
        if(tokens[i] == "+" || tokens[i] == "-" || tokens[i] == "*" || tokens[i] == "/"){
            string t = tokens[i];
            int a = value.top();
            value.pop();
            int b = value.top();
            value.pop();
            if(t == "+"){
                value.push(b + a);
            }
            if(t == "-"){
                value.push(b - a);
            }
            if(t == "*"){
                value.push(b * a);
            }
            if(t == "/"){
                value.push(b / a);
            }
        }else{
            value.push(atoi(tokens[i].c_str()));
        }
    }
    return value.top();
        
}



int main(int argc, char** argv) {
    vector<string> s;
    s.push_back("4");
    s.push_back("13");
    s.push_back("5");
    s.push_back("/");
    s.push_back("+");
    cout<<evalRPN(s);
    return 0;
}

leetcode Evaluate Reverse Polish Notation

原文:http://www.cnblogs.com/jilichuan/p/3997472.html

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