#include<iostream>#include<cstring>#include<algorithm>#include<stack>#include<unordered_map>usingnamespace std;
stack<int> num;
stack<char> op;voideval(){auto b = num.top(); num.pop();auto a = num.top(); num.pop();auto c = op.top(); op.pop();int x;if(c =='+') x = a + b;elseif(c =='-') x = a - b;elseif(c =='*') x = a * b;else x = a / b;
num.push(x);}intmain(){
unordered_map<char,int> pr{{'+',1},{'-',1},{'*',2},{'/',2}};
string str;
cin >> str;for(int i =0; i < str.size(); i ++){auto c = str[i];if(isdigit(c)){int x =0, j = i;while(j < str.size()&&isdigit(str[j]))
x = x *10+ str[j ++]-'0';
i = j -1;
num.push(x);}elseif(c =='(') op.push(c);elseif(c ==')'){while(op.top()!='(')eval();
op.pop();}else{while(op.size()&& op.top()!='('&& pr[op.top()]>= pr[c])eval();
op.push(c);}}while(op.size())eval();
cout << num.top()<< endl;return0;}
传送门
Spring Cloud Alibaba系列之nacos:(1)安装
Spring Cloud Alibaba系列之nacos:(2)单机模式支持mysql
Spring Cloud Alibaba系列之nacos:(3)服务注册发现
Spring Cloud Alibaba系列之nacos:(4)配置管理
为什么要搭建本地…