stack实现queueclass MyQueue {public: stack stIn;//输入栈 stack stOut;//输出栈 MyQueue() { } void push(int x) { ...2024-10-14C++刷题笔记