题目名称

设计实现双端队列。

实现 MyCircularDeque 类:

MyCircularDeque(int k) :构造函数,双端队列最大为 k 。

boolean insertFront():将一个元素添加到双端队列头部。 如果操作成功返回 true ,否则返回 false 。

boolean insertLast() :将一个元素添加到双端队列尾部。如果操作成功返回 true ,否则返回 false 。

boolean deleteFront() :从双端队列头部删除一个元素。 如果操作成功返回 true ,否则返回 false 。

boolean deleteLast() :从双端队列尾部删除一个元素。如果操作成功返回 true ,否则返回 false 。

int getFront() ):从双端队列头部获得一个元素。如果双端队列为空,返回 -1 。

int getRear() :获得双端队列的最后一个元素。 如果双端队列为空,返回 -1 。

boolean isEmpty() :若双端队列为空,则返回 true ,否则返回 false 。

boolean isFull() :若双端队列满了,则返回 true ,否则返回 false 。

示例

输入
[“MyCircularDeque”, “insertLast”, “insertLast”, “insertFront”, “insertFront”, “getRear”, “isFull”, “deleteLast”, “insertFront”, “getFront”]
[[3], [1], [2], [3], [4], [], [], [], [4], []]

输出
[null, true, true, true, false, 2, true, true, true, 4]

题解

题解略

需要注意的是几个边界值(栈是否为空,栈是否已满,栈当前长度)

答案

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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/**
* @param {number} k
*/
var MyCircularDeque = function(k) {
this.deque = []
this.length = k
this.end = -1
};

/**
* @param {number} value
* @return {boolean}
*/
MyCircularDeque.prototype.insertFront = function(value) {
if(this.isFull()) return false
this.deque.unshift(value)
this.end++
return true
};

/**
* @param {number} value
* @return {boolean}
*/
MyCircularDeque.prototype.insertLast = function(value) {
if(this.isFull()) return false
this.deque.push(value)
this.end++
return true
};

/**
* @return {boolean}
*/
MyCircularDeque.prototype.deleteFront = function() {
if(this.isEmpty()) return false
this.deque.shift()
this.end--
return true
};

/**
* @return {boolean}
*/
MyCircularDeque.prototype.deleteLast = function() {
if(this.isEmpty()) return false
this.deque.pop()
this.end--
return true
};

/**
* @return {number}
*/
MyCircularDeque.prototype.getFront = function() {
if(this.isEmpty()) return -1
return this.deque[0]
};

/**
* @return {number}
*/
MyCircularDeque.prototype.getRear = function() {
if(this.isEmpty()) return -1
return this.deque[this.end]
};

/**
* @return {boolean}
*/
MyCircularDeque.prototype.isEmpty = function() {
return this.deque.length === 0
};

/**
* @return {boolean}
*/
MyCircularDeque.prototype.isFull = function() {
return this.deque.length === this.length
};