当前位置:网站首页>LeetCode算法日记:面试题 03.04. 化栈为队
LeetCode算法日记:面试题 03.04. 化栈为队
2022-08-03 03:38:00 【happykoi】
面试题 03.04. 化栈为队
日期:2022/8/2
题目描述:实现一个MyQueue类,该类用两个栈来实现一个队列。
示例:
MyQueue queue = new MyQueue();
queue.push(1);
queue.push(2);
queue.peek(); // 返回 1
queue.pop(); // 返回 1
queue.empty(); // 返回 false
思路:
peek或pop的时候,用s2存储s1的逆序,这样s2的尾就是s1的首,也就是需要输出的那个元素
代码+解析:
class MyQueue {
private:
stack<int> s1;
public:
/** Initialize your data structure here. */
MyQueue() {
}
/** Push element x to the back of queue. */
void push(int x) {
s1.push(x);
}
/** Removes the element from in front of queue and returns that element. */
int pop() {
stack<int> temp = s1;
stack<int> s2;
while(!s1.empty()){
s2.push(s1.top());
s1.pop();
}
int res = s2.top();
s2.pop();
while(s1.size() < temp.size()-1){
s1.push(s2.top());
s2.pop();
}
return res;
}
/** Get the front element. */
int peek() {
stack<int> temp = s1;
stack<int> s2;
while(!temp.empty()){
s2.push(temp.top());
temp.pop();
}
return s2.top();
}
/** Returns whether the queue is empty. */
bool empty() {
return s1.size() == 0;
}
};
/**
* 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();
*/
边栏推荐
猜你喜欢
随机推荐
els 消除行
stdio.h(本机代码)
DPDK mlx5 驱动使用报错
log4j设置日志的时区
多线程使用哈希表
【STM32】入门(四):外部中断-按键通过中断动作
中原银行实时风控体系建设实践
Jincang Database Pro*C Migration Guide ( 5. Program Development Example)
金仓数据库 Pro*C 迁移指南( 5. 程序开发示例)
视频中场的概念(1080I和1080P)和BT601/656/709/1120/2020/2077
DC-6靶场下载及渗透实战详细过程(DC靶场系列)
Chapter 8 Character Input Output and Input Validation
我的“眼睛”就是尺!
path development介绍
ClickHouse uninstall and reinstall
DC-3靶场搭建及渗透实战详细过程(DC靶场系列)
Linux-Docker-Redis安装
解析,强势供应商的管理方法
PyTorch安装——安装PyTorch前在conda搭建虚拟环境的报错
SkiaSharp 之 WPF 自绘 五环弹动球(案例版)









