当前位置:网站首页>栈 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
- Leetcode backtracking method
- MIT-6874-Deep Learning in the Life Sciences Week 7
- 927. 三等分 模拟
- [rust notes] 17 concurrent (Part 1)
- Overview of variable resistors - structure, operation and different applications
- leetcode-3:无重复字符的最长子串
- 【LeetCode】Day94-重塑矩阵
- 1039 Course List for Student
- LeetCode 1200.最小绝对差
猜你喜欢

RGB LED infinite mirror controlled by Arduino

redis发布订阅命令行实现

Data visualization chart summary (I)

数据可视化图表总结(一)

SPI 详解

什么是套接字?Socket基本介绍

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

Leetcode-6111: spiral matrix IV

Doing SQL performance optimization is really eye-catching

Appium automation test foundation - Summary of appium test environment construction
随机推荐
SPI 详解
1.14 - assembly line
LeetCode-61
【Rust 笔记】13-迭代器(中)
Leetcode-3: Longest substring without repeated characters
leetcode-6108:解密消息
Leetcode-31: next spread
【Rust 笔记】17-并发(下)
Overview of variable resistors - structure, operation and different applications
Sum of three terms (construction)
多屏电脑截屏会把多屏连着截下来,而不是只截当前屏
1.13 - RISC/CISC
Error ora-28547 or ora-03135 when Navicat connects to Oracle Database
Matrixdb V4.5.0 was launched with a new mars2 storage engine!
leetcode-6111:螺旋矩阵 IV
SPI details
WordPress switches the page, and the domain name changes back to the IP address
liunx启动redis
wordpress切换页面,域名变回了IP地址
MySQL advanced part 2: optimizing SQL steps
