232. 用栈实现队列
摘要:
class MyQueue { public: MyQueue() { } void push(int x) { s1.push(x); } int pop() { int ret; if(!empty()){ if(!s2.empty()){ ret = s2.top(); s2.pop(); r 阅读全文
posted @ 2024-10-22 19:08 神奇的萝卜丝 阅读(2) 评论(0) 推荐(0) 编辑