当前位置:网站首页>栈 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;
}
原创不易
转载请标明出处
如果对你有所帮助 别忘啦点赞支持哈
边栏推荐
- [rust notes] 15 string and text (Part 1)
- 11-gorm-v2-03-basic query
- Leetcode array operation
- Traditional databases are gradually "difficult to adapt", and cloud native databases stand out
- 【Rust 笔记】16-输入与输出(上)
- Is it impossible for lamda to wake up?
- MIT-6874-Deep Learning in the Life Sciences Week 7
- C Primer Plus Chapter 15 (bit operation)
- 927. Trisection simulation
- Daily question 2006 Number of pairs whose absolute value of difference is k
猜你喜欢
redis发布订阅命令行实现
Open source storage is so popular, why do we insist on self-development?
高斯消元 AcWing 884. 高斯消元解异或线性方程组
MySQL advanced part 1: View
MySQL advanced part 2: SQL optimization
Network security skills competition in Secondary Vocational Schools -- a tutorial article on middleware penetration testing in Guangxi regional competition
LeetCode 0108.将有序数组转换为二叉搜索树 - 数组中值为根,中值左右分别为左右子树
MIT-6874-Deep Learning in the Life Sciences Week 7
阿里新成员「瓴羊」正式亮相,由阿里副总裁朋新宇带队,集结多个核心部门技术团队
Doing SQL performance optimization is really eye-catching
随机推荐
Leetcode-1200: minimum absolute difference
【Rust 笔记】16-输入与输出(上)
MySQL advanced part 2: SQL optimization
【Rust 笔记】13-迭代器(下)
阿里新成员「瓴羊」正式亮相,由阿里副总裁朋新宇带队,集结多个核心部门技术团队
In depth analysis of for (VaR I = 0; I < 5; i++) {settimeout (() => console.log (I), 1000)}
SQLMAP使用教程(一)
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-9:回文数
快速使用Amazon MemoryDB并构建你专属的Redis内存数据库
Navicat連接Oracle數據庫報錯ORA-28547或ORA-03135
Leetcode-6109: number of people who know secrets
1.13 - RISC/CISC
leetcode-22:括号生成
[rust notes] 14 set (Part 2)
SPI details
leetcode-6111:螺旋矩阵 IV
C Primer Plus Chapter 15 (bit operation)
CPU内核和逻辑处理器的区别
Appium foundation - use the first demo of appium