当前位置:网站首页>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();
*/
边栏推荐
猜你喜欢
随机推荐
AF-DNAT
钢铁电商行业方案:钢铁工业产品全生命周期管理解决方案
ClickHouse卸载、重安装
再讲Promise
synchronized原理
Auto.js Pro write the first script hello world
ROS2自学笔记:机器视觉基础
肖sir ——自动化讲解
Compose the displacement of the view
JWT入门学习
PyTorch installation - error when building a virtual environment in conda before installing PyTorch
电子设备行业智能供应链系统:打破传统供应链壁垒,提升电子设备企业管理效能
(一)Nacos注册中心集群环境搭建
path development介绍
PSSecurityException
ESP8266-Arduino编程实例-MAX6675冷端补偿K热电偶数字转换器驱动
HI3521D 烧录128M nand flash文件系统过程-一定要注意flash的容量
Task Scheduler 计划定时任务,修改时报错: One or more of the specified arguments are not valid
硬件设计哪些事-PCB设计那些事
DC-5靶场下载及渗透实战详细过程(DC靶场系列)









