博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Infix to postfix without '(' and ')'
阅读量:5789 次
发布时间:2019-06-18

本文共 729 字,大约阅读时间需要 2 分钟。

#include
#include
#include
#include
using namespace std;char compare(char tp, char op){ if (((tp == '+' || tp == '-') && (op == '*' || op == '/')) || tp == '#') return '<'; return '>';}int main(){ stack
num; stack
oper; oper.push('#'); string s; cin >> s; for (int i = 0; i
') { num.push(oper.top()); oper.pop(); oper.push(s[i]); } } } while (oper.top() != '#') { num.push(oper.top()); oper.pop(); } deque
d; while (num.size() != 0) { d.push_front(num.top()); num.pop(); } for (auto i = d.begin(); i != d.end(); i++) cout << *i; cout << endl; return 0;}

  

转载于:https://www.cnblogs.com/KennyRom/p/5980056.html

你可能感兴趣的文章
一个不错的vue项目
查看>>
屏蔽指定IP访问网站
查看>>
python学习 第一天
查看>>
根据毫秒数计算出当前的“年/月/日/时/分/秒/星期”并不是件容易的事
查看>>
python的图形模块PIL小记
查看>>
shell变量子串
查看>>
iOS的主要框架介绍 (转载)
查看>>
react报错this.setState is not a function
查看>>
poj 1183
查看>>
从根本解决跨域(nginx部署解决方案)
查看>>
javascript实现的一个信息提示的小功能/
查看>>
Centos7.x:开机启动服务的配置和管理
查看>>
HTML5 浏览器返回按钮/手机返回按钮事件监听
查看>>
xss
查看>>
iOS:百度长语音识别具体的封装:识别、播放、进度刷新
查看>>
JS获取服务器时间并且计算距离当前指定时间差的函数
查看>>
华为硬件工程师笔试题
查看>>
jquery居中窗口-页面加载直接居中
查看>>
cd及目录快速切换
查看>>
Unity Shaders and Effects Cookbook (3-5) 金属软高光
查看>>