leetcode刷题/栈和队列 232. 用栈实现队列

232. 用栈实现队列

题意:

请你仅使用两个栈实现先入先出队列。队列应当支持一般队列支持的所有操作(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(双端队列)来模拟一个栈,只要是标准的栈操作即可。

进阶:

你能否实现每个操作均摊时间复杂度为 O(1) 的队列?换句话说,执行 n 个操作的总时间复杂度为 O(n) ,即使其中一个操作可能花费较长时间.

示例:

输入:
["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
解题思路:

队列是双向的,栈是单向的.如果要用栈模拟队列,一个口不够,那么就两个.

  • 两个栈需要联合在一起,一个作为输入,一个作为输出.
  • 当输入数据是,用输入栈接受输入的数据
  • 当获取栈顶元素时,可以把输入栈的数重新压入输出栈(顺序就颠倒了),然后输出
  • 删除和获取栈顶元素同样的操作,只是在输出后还需要去除栈顶元素
  • 判空需要两个栈同时为空

小tip:

​ 我做的时候在想如果栈空时再进行pop操作应该如何放回,我写了个判空然后返回==-1==试了一下,想着如果报错就可以知道是怎么放回的.但是它可行运行.我想着是不是返回 -1 就是对的.所有我把这段判空给去了,还是可以运行.说明这道题并没有考虑这个情况.

代码:
class MyQueue {
public:
	stack<int> s_input;
	stack<int> s_output;
	/** Initialize your data structure here. */
	MyQueue() {

	}
	/** Push element x to the back of queue. */
	void push(int x) {
		s_input.push(x);
	}

	/** Removes the element from in front of queue and returns that element. */
	int pop() {
		if (s_output.empty())
		{
			while (!s_input.empty())
			{
				s_output.push(s_input.top());
				s_input.pop();
			}
		}
		int x = s_output.top();
		s_output.pop();
		return x;
	}

	/** Get the front element. */
	int peek() {
		if (s_output.empty())
		{
			while (!s_input.empty())
			{
				s_output.push(s_input.top());
				s_input.pop();
			}
		}
		return s_output.top();
	}

	/** Returns whether the queue is empty. */
	bool empty() {
		if (s_input.empty() && s_output.empty())
			return true;
		return false;
	}
};
运行结果:

在这里插入图片描述

总结:

这道题如果学过数据结构栈和队列的实现应该不难完成,就是需要想到栈只有一个口,但队列需要两个.一个栈肯定无法实现,所有需要两个栈.然后想到一个用来输入.一个用来输出.就可以完成题目要求.

你可能感兴趣的:(leetcode刷题/栈和队列,数据结构,栈,c++,leetcode,队列)