LeetCode225用队列实现栈
- 题目
- 代码
- 题目总结
题目:
使用队列实现栈的下列操作:
push(x) – 元素 x 入栈
pop() – 移除栈顶元素
top() – 获取栈顶元素
empty() – 返回栈是否为空
注意:
你只能使用队列的基本操作-- 也就是 push to back, peek/pop from front, size, 和 is empty 这些操作是合法的。
你所使用的语言也许不支持队列。 你可以使用 list 或者 deque(双端队列)来模拟一个队列 , 只要是标准的队列操作即可。
你可以假设所有操作都是有效的(例如, 对一个空的栈不会调用 pop 或者 top 操作)。
代码展示:
class MyStack {
public:
/** Initialize your data structure here. */
MyStack() {
}
/** Push element x onto stack. */
void push(int x) {
std::queue<int> temp_queue;
temp_queue.push(x);//对新元素x 的操作
while(!_data.empty()){
temp_queue.push(_data.front());
_data.pop();
}
while(!temp_queue.empty()){
_data.push(temp_queue.front());
temp_queue.pop();
}
}
/** Removes the element on top of the stack and returns that element. */
int pop() {
int m=_data.front();//取栈顶元素为队列头部元素
_data.pop();//弹出队列头部元素
return m;//返回取出的队列头部元素
}
/** Get the top element. */
int top() {
return _data.front();
}
/** Returns whether the stack is empty. */
bool empty() {
return _data.empty();//返回栈顶,即直接返回队列头部元素
}
private:
std::queue<int> _data;//data为数据队列存储元素的顺序
};
/**
* Your MyStack object will be instantiated and called as such:
* MyStack obj = new MyStack();
* obj.push(x);
* int param_2 = obj.pop();
* int param_3 = obj.top();
* bool param_4 = obj.empty();
*/
题目反思
LeetCode225和LeetCode232是属于队列和栈的基本转化操作。分别对栈和队列相应的数据结构进行操作,是指呈现的结果和对应的数据结构的结果是一致的。要求充分熟悉到,队列是先进先出的,栈是后进先出的。