2022/01/[路飞][LeetCode]面试题03_04_化栈为队/index

看一百遍美女,美女也不一定是你的。但你刷一百遍算法,知识就是你的了~~

谁能九层台,不用累土起!

题目地址

题目

实现一个MyQueue类,该类用两个栈来实现一个队列。

示例:

1
2
3
4
5
6
7
MyQueue queue = new MyQueue();

queue.push(1);
queue.push(2);
queue.peek(); // 返回 1
queue.pop(); // 返回 1
queue.empty(); // 返回 false

说明:

  • 你只能使用标准的栈操作 – 也就是只有push to top, peek/pop from top,sizeis empty操作是合法的。
  • 你所使用的语言也许不支持栈。你可以使用list或者deque(双端队列)来模拟一个栈,只要是标准的栈操作即可。
  • 假设所有操作都是有效的 (例如,一个空的队列不会调用pop或者peek操作)。

解题思想

看到这个题,相信看过我的题解的小伙伴们一定会非常的熟悉,这不就是 设计循环队列 的简化版嘛!

  • 我们用数组来解题
  • push为常规数组操作
  • empty判断数组长度是否为0
  • peek直接返回数组的第一个元素
  • pop删除数组的第一个元素并将删除的元素返回

解题代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**
* Initialize your data structure here.
*/
var MyQueue = function() {
this.arr = []
};

/**
* Push element x to the back of queue.
* @param {number} x
* @return {void}
*/
MyQueue.prototype.push = function(x) {
this.arr.push(x)
};

/**
* Removes the element from in front of queue and returns that element.
* @return {number}
*/
MyQueue.prototype.pop = function() {
let [a,...args] = this.arr
this.arr = [...args]
return a
};

/**
* Get the front element.
* @return {number}
*/
MyQueue.prototype.peek = function() {
return this.arr[0]
};

/**
* Returns whether the queue is empty.
* @return {boolean}
*/
MyQueue.prototype.empty = function() {
return this.arr.length == 0
};

/**
* Your MyQueue object will be instantiated and called as such:
* var obj = new MyQueue()
* obj.push(x)
* var param_2 = obj.pop()
* var param_3 = obj.peek()
* var param_4 = obj.empty()
*/

如有任何问题或建议,欢迎留言讨论!

文章作者: Joker
文章链接: https://qytayh.github.io/2022/01/[%E8%B7%AF%E9%A3%9E][LeetCode]%E9%9D%A2%E8%AF%95%E9%A2%9803_04_%E5%8C%96%E6%A0%88%E4%B8%BA%E9%98%9F/index/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Joker's Blog