当前位置:网站首页>【LeetCode】232.用栈实现队列
【LeetCode】232.用栈实现队列
2022-08-04 10:50:00 【酥酥~】
题目
请你仅使用两个栈实现先入先出队列。队列应当支持一般队列支持的所有操作(push、pop、peek、empty):
实现 MyQueue 类:
- void push(int x) 将元素 x 推到队列的末尾
- int pop() 从队列的开头移除并返回元素
- int peek() 返回队列开头的元素
- boolean empty() 如果队列为空,返回 true ;否则,返回 false
- 说明:你 只能 使用标准的栈操作 —— 也就是只有 push to top, peek/pop from top, size, 和 is empty 操作是合法的。
你所使用的语言也许不支持栈。你可以使用 list 或者 deque(双端队列)来模拟一个栈,只要是标准的栈操作即可。
示例 1:
输入:
[“MyQueue”, “push”, “push”, “peek”, “pop”, “empty”]
[[], [1], [2], [], [], []]
输出:
[null, null, null, 1, 1, false]
解释:
MyQueue myQueue = new MyQueue();
myQueue.push(1); // queue is: [1]
myQueue.push(2); // queue is: [1, 2] (leftmost is front of the queue)
myQueue.peek(); // return 1
myQueue.pop(); // return 1, queue is [2]
myQueue.empty(); // return false
提示:
1 <= x <= 9
最多调用 100 次 push、pop、peek 和 empty
假设所有操作都是有效的 (例如,一个空的队列不会调用 pop 或者 peek 操作)
题解
因为栈是先进后出,队是先进先出,所以要保持先进的在栈顶部
入队时,将s1栈的元素全部压入s2中,保持新入栈的在底部,然后在压回s1
class MyQueue {
public:
stack<int> mystack1;
stack<int> mystack2;
MyQueue() {
return;
}
void push(int x) {
while(!mystack1.empty())
{
mystack2.push(mystack1.top());
mystack1.pop();
}
mystack1.push(x);
while(!mystack2.empty())
{
mystack1.push(mystack2.top());
mystack2.pop();
}
}
int pop() {
int res = mystack1.top();
mystack1.pop();
return res;
}
int peek() {
return mystack1.top();
}
bool empty() {
return mystack1.empty();
}
};
/** * Your MyQueue object will be instantiated and called as such: * MyQueue* obj = new MyQueue(); * obj->push(x); * int param_2 = obj->pop(); * int param_3 = obj->peek(); * bool param_4 = obj->empty(); */
边栏推荐
猜你喜欢
随机推荐
js文字转语音播报
Camunda整体架构和相关概念
Maple 2022软件安装包下载及安装教程
黑马瑞吉外卖之员工账号的禁用和启用以及编辑修改
广东对小鹏/广汽丰田开展网络安全检查
无代码平台多项选择入门教程
物体颜色的来源
OD-Model【5】:YOLOv1
双向带头循环链表实现
MySQL核心SQL:结构化查询语句SQL、库操作、表操作、CRUD
WPF 截图控件之画笔(八)「仿微信」
LeetCode第三题(Longest Substring Without Repeating Characters)三部曲之三
BOSS 直聘回应女大学生连遭两次性骚扰:高度重视求职者安全,可通过 App 等举报
Meishe Q&A Room | Meiying VS Meishe Cloud Editing
MySQL:完整性约束和 表的设计原则
江西发布紧急通知:全面开展涉校涉生安全隐患大排查
[论文阅读] Unpaired Image-to-Image Translation Using Adversarial Consistency Loss
C语言*小白的探险历程
高级转录组分析和R数据可视化火热报名中(2022.10)
解析treeSet集合进行自定义类的排序