MeteorChen
MeteorChen
全部文章
分类
题解(9)
归档
标签
去牛客网
登录
/
注册
MeteorChen的博客
全部文章
(共1篇)
类似于中缀表达式转后缀表达的思想
感觉这个类似于中缀表达式转后缀表达式的那种类型,最先想到的是用两个栈,代码如下: //使用两个栈来辅助 Stack<Integer> stack1=new Stack<>(); Stack<Integer> stac...
栈
2020-03-13
0
687