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

表达式求值

时间:2021-04-27 14:59:52      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:nbsp   rgb   span   using   ring   str   class   stack   string   

#include <iostream>
#include <stack>
#include <cstring>
#include <unordered_map>
using namespace std;
typedef long long ll;
stack<int>num;
stack<char>op;
unordered_map<char,int>h{ {+,1},{-,1},{*,2},{/,2} };
void eval()
{
    int a=num.top();num.pop();
    int b=num.top();num.pop();
    char p=op.top();op.pop();
    int r=0;
    if(p==+)r=a+b;
    else if(p==-)r=b-a;
    else if(p==*)r=a*b;
    else if(p==/)r=b/a;
    num.push(r);
}
int main()
{
    string s;cin>>s;
    for(int i=0;i<s.size();i++)
    {
        if(isdigit(s[i])){
            int x=0,j=i;
            while(j<s.size()&&isdigit(s[j])){
                x=x*10+s[j]-0;j++;
            }
            num.push(x);
            i=j-1;
        }
        else if(s[i]==(){
            op.push(s[i]);
        }
        else if(s[i]==)){
            while(op.top()!=()
                eval();
            op.pop();
        }
        else{
            while(op.size()&&h[op.top()]>=h[s[i]])
                eval();
            op.push(s[i]);
        }
    }
    while(op.size())eval();
    cout<<num.top()<<"\n";
}

 

表达式求值

标签:nbsp   rgb   span   using   ring   str   class   stack   string   

原文地址:https://www.cnblogs.com/qq1415584788/p/14706429.html

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