LC.P641[设计循环双端队列]

方法一:双指针+数组

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
class MyCircularDeque {

int[] data;
int size, head, tail;

public MyCircularDeque(int k) {
data = new int[k];
size = 0;
head = 0;
tail = k - 1;
}

public boolean insertFront(int value) {
if (isFull()) return false;
head = head == 0 ? data.length - 1 : head - 1; // 头指针左移
data[head] = value;
++size;
return true;
}

public boolean insertLast(int value) {
if (isFull()) return false;
tail = tail == data.length - 1 ? 0 : tail + 1; // 尾指针右移
data[tail] = value;
++size;
return true;
}

public boolean deleteFront() {
if (isEmpty()) return false;
head = head == data.length - 1 ? 0 : head + 1; // 头指针右移
--size;
return true;
}

public boolean deleteLast() {
if (isEmpty()) return false;
tail = tail == 0 ? data.length - 1 : tail - 1; // 尾指针左移
--size;
return true;
}

public int getFront() {
return isEmpty() ? -1 : data[head];
}

public int getRear() {
return isEmpty() ? -1 : data[tail];
}

public boolean isEmpty() {
return size == 0;
}

public boolean isFull() {
return size == data.length;
}
}

/**
* Your MyCircularDeque object will be instantiated and called as such:
* MyCircularDeque obj = new MyCircularDeque(k);
* boolean param_1 = obj.insertFront(value);
* boolean param_2 = obj.insertLast(value);
* boolean param_3 = obj.deleteFront();
* boolean param_4 = obj.deleteLast();
* int param_5 = obj.getFront();
* int param_6 = obj.getRear();
* boolean param_7 = obj.isEmpty();
* boolean param_8 = obj.isFull();
*/

方法二:数据结构经典做法

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
class MyCircularDeque {

int[] data;
int front, rear;
int maxSize;

public MyCircularDeque(int k) {
maxSize = k + 1;
data = new int[maxSize];
front = rear = 0;
}

public boolean insertFront(int value) {
if (isFull()) return false;
front = (front - 1 + maxSize) % maxSize;
data[front] = value;
return true;
}

public boolean insertLast(int value) {
if (isFull()) return false;
data[rear] = value;
rear = (rear + 1) % maxSize;
return true;
}

public boolean deleteFront() {
if (isEmpty()) return false;
front = (front + 1) % maxSize;
return true;
}

public boolean deleteLast() {
if (isEmpty()) return false;
rear = (rear - 1 + maxSize) % maxSize;
return true;
}

public int getFront() {
return isEmpty() ? -1 : data[front];
}

public int getRear() {
return isEmpty() ? -1 : data[(rear - 1 + maxSize) % maxSize];
}

public boolean isEmpty() {
return front == rear;
}

public boolean isFull() {
return (rear + 1) % maxSize == front;
}
}

/**
* Your MyCircularDeque object will be instantiated and called as such:
* MyCircularDeque obj = new MyCircularDeque(k);
* boolean param_1 = obj.insertFront(value);
* boolean param_2 = obj.insertLast(value);
* boolean param_3 = obj.deleteFront();
* boolean param_4 = obj.deleteLast();
* int param_5 = obj.getFront();
* int param_6 = obj.getRear();
* boolean param_7 = obj.isEmpty();
* boolean param_8 = obj.isFull();
*/