当前位置:网站首页>栈 AcWing 3302. 表达式求值
栈 AcWing 3302. 表达式求值
2022-07-05 06:16:00 【T_Y_F666】
栈 AcWing 3302. 表达式求值
原题链接
算法标签
栈 表达式求值
思路
代码
#include<bits/stdc++.h>
#define int long long
#define rep(i, a, b) for(int i=a;i<b;++i)
#define Rep(i, a, b) for(int i=a;i>b;--i)
using namespace std;
const int N = 10005;
stack<int> num;
stack<int> op;
inline int read(){
int s=0,w=1;
char ch=getchar();
while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();}
while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar();
return s*w;
}
void put(int x) {
if(x<0) putchar('-'),x=-x;
if(x>=10) put(x/10);
putchar(x%10^48);
}
void eval(){
int b=num.top();
num.pop();
int a=num.top();
num.pop();
char c=op.top();
op.pop();
int x;
if(c=='+'){
x=a+b;
}else if(c=='-'){
x=a-b;
}else if(c=='*'){
x=a*b;
}else{
x=a/b;
}
num.push(x);
}
signed main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
// 定义运算符优先级
unordered_map<char, int> ump={
{'+', 1}, {'-', 1}, {'*', 2}, {'/', 2}};
string s;
cin>>s;
rep(i, 0, s.size()){
// 提取字符串中数字
if(isdigit(s[i])){
int j=i, x=0;
while(j<s.size()&&isdigit(s[j])){
x=x*10+s[j++]-'0';
}
i=j-1;
num.push(x);
}else if(s[i]=='('){ // ( 入栈
op.push(s[i]);
}else if(s[i]==')'){ // ) 与 ( 之间数字进行运算
while(op.top()!='('){
eval();
}
// ) 出栈
op.pop();
}else{ // + - * / 运算 待入栈运算符优先级低,则先计算 后将计算结果入栈
while(op.size()&&op.top()!='('&&ump[op.top()]>=ump[s[i]]){
eval();
}
// 否则 先入栈 后计算
op.push(s[i]);
}
}
// 将所有未操作运算符 从前至后操作
while(op.size()){
eval();
}
printf("%lld", num.top());
return 0;
}
原创不易
转载请标明出处
如果对你有所帮助 别忘啦点赞支持哈
边栏推荐
猜你喜欢
传统数据库逐渐“难适应”,云原生数据库脱颖而出
LeetCode 0108. Convert an ordered array into a binary search tree - the median of the array is the root, and the left and right of the median are the left and right subtrees respectively
做 SQL 性能优化真是让人干瞪眼
Is it impossible for lamda to wake up?
实时时钟 (RTC)
高斯消元 AcWing 884. 高斯消元解异或线性方程组
Single chip computer engineering experience - layered idea
Erreur de connexion Navicat à la base de données Oracle Ora - 28547 ou Ora - 03135
4. Object mapping Mapster
Overview of variable resistors - structure, operation and different applications
随机推荐
Sword finger offer II 058: schedule
Basic explanation of typescript
【LeetCode】Day95-有效的数独&矩阵置零
Leetcode-6109: number of people who know secrets
1039 Course List for Student
[rust notes] 16 input and output (Part 1)
MySQL怎么运行的系列(八)14张图说明白MySQL事务原子性和undo日志原理
WordPress switches the page, and the domain name changes back to the IP address
Appium automation test foundation - Summary of appium test environment construction
【Rust 笔记】13-迭代器(中)
【Rust 笔记】17-并发(下)
The sum of the unique elements of the daily question
Leetcode-556: the next larger element III
C - XOR to all (binary topic)
MIT-6874-Deep Learning in the Life Sciences Week 7
2021apmcm post game Summary - edge detection
Leetcode-31: next spread
JS quickly converts JSON data into URL parameters
MatrixDB v4.5.0 重磅发布,全新推出 MARS2 存储引擎!
[rust notes] 16 input and output (Part 2)