题解 1733: 堆栈的使用

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

堆栈的使用

摘要:解题思路:注意事项:参考代码:def stack_operation(commands):    stack = []    output = []    for command in command……

就栈的基本应用 有解析

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int m,n; char a; while(cin >> ……