当前位置:网站首页>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();
*/
边栏推荐
- Compose the displacement of the view
- DMA 的工作方式
- Summary of some questions about the grain mall
- Guys, I don't understand a bit: why the documentation of oracle-cdc writes that the connector can be done exactly-o
- SMP 需要考虑的事情
- 【动态规划--01背包】HJ16 购物单
- 爆肝22个ES6知识点
- DC-6靶场下载及渗透实战详细过程(DC靶场系列)
- 肖sir___面试就业课程____性能测试
- HCIP第十八天
猜你喜欢
随机推荐
Auto.js Pro 编写第一个脚本hello world
正则表达式与绕过案例
QT之鼠标和键盘事件重写
智能健身动作识别:PP-TinyPose打造AI虚拟健身教练!
log4j设置日志的时区
基于Streamlit的YOLOv5ToX模型转换工具(适用YOLOv5训练出来的模型转化为任何格式)
多线程使用哈希表
(2022杭电多校五)1010-Bragging Dice (思维)
Best Practices for Migration from Jincang Database from MySQL to KingbaseES (3. MySQL Database Migration Practice)
vscode access denied to unins000.exe
高等代数_笔记_配方法标准化二次型
基于 Cyclone IV 在 Quartus 中配置 IP 核中的 PLL、RAM 与 FIFO 的详细步骤及仿真验证
Jincang Database Pro*C Migration Guide (3. KingbaseES Pr*oc Compatibility with Oracle Pro*c)
肖sir__面试就业课___数据库
基于 jetpack compose,使用MVI架构+自定义布局实现的康威生命游戏
TCP相关面试常问
高等代数_证明_不同特征值的特征向量线性无关
Auto.js Pro write the first script hello world
MediaRecorder录制屏幕时在部分机型上报错prepare failed:-22
数据库性能系列之索引(中)









