主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
1935569240
2024年3月7日 23:33
表达式的转换 题解:代码来了
P1063
回复 0
|
赞 0
|
浏览 504
#include<iostream> #include<algorithm> #include<stack> #include<string> using namespace std; struct oper { char ch; int priority;//运算符优先级 }; int ans[100], flag[100]{ 0 }, cnt = 0;//用于输出的 void getOper(char ch) { &nb...
wenjuice
2022年3月27日 15:42
第一遍用数组做的,参考题解又用vector做了一遍,方便删除和覆盖后缀
P1063
回复 0
|
赞 2
|
浏览 5.2k
#include<iostream> #include<string> #include<algorithm> #include<stack> #include<vector> using namespace std; const string temp = "+-*/^"; int getPri(char c) { // 获取优先级0 1 2 3 return temp.find(c) / 2; } bool cmpPri(char a, char b) { // 比较优先级 return...
楼嘉彬
2021年3月16日 16:38
踩了char取值范围的坑
P1063
回复 0
|
赞 0
|
浏览 7.3k
#include <iostream> #include <stack> #include <string> #include <vector> #include <math.h> using namespace std; int is_number(char c) { return '0' <= c && '9' >= c; } int symbol_type(char c) { ...
题目
表达式的转换
题解数量
3
发布题解
热门题解
1
第一遍用数组做的,参考题解又用vector做了一遍,方便删除和覆盖后缀表达式
2
表达式的转换 题解:代码来了
3
踩了char取值范围的坑