-
Notifications
You must be signed in to change notification settings - Fork 4
/
Deque.ts
304 lines (243 loc) · 6.94 KB
/
Deque.ts
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
/**
* Inspired by https://github.com/invertase/denque/blob/master/index.js
*/
// Types
import { TUndefinable } from '../types';
/**
* Deque is a simple automatically resizable double ended queue implementation (abbreviated to deque).
*/
export class Deque {
private headIndex: number = 0;
private tailIndex: number = 0;
private capacityMask: number = 0x3;
private internalList: any[] = new Array(4);
/**
* Get the current length of the queue
*/
get length(): number /* O(1) */ {
return this.getSize();
}
/**
* Optionally populate the internal list with an array
*
* @param array Array with items to initialise the internal list with
*/
constructor(array?: any[]) /* O(n) */ {
if (Array.isArray(array)) {
for (const item of array) {
this.push(item);
}
}
}
/**
* Returns the item at the specified index from the internal list
* You can specify a negative index to peek at values from the end of the internal list
*
* @param index Index of the item to peek at
*/
public peekIndex(index: number): TUndefinable<any> /* O(1) */ {
if (index !== (index | 0)) {
return undefined;
}
const length = this.getSize();
if (index >= length || index < -length) {
return undefined;
}
if (index < 0) {
index += length;
}
index = (this.headIndex + index) & this.capacityMask;
return this.internalList[index];
}
/**
* Returns the head item of the internal list without removing it
*/
public peekHead(): TUndefinable<any> /* O(1) */ {
if (this.headIndex === this.tailIndex) {
return undefined;
}
return this.internalList[this.headIndex];
}
/**
* Returns the tail item of the internal list without removing it
*/
public peekTail(): TUndefinable<any> /* O(1) */ {
return this.peekIndex(-1);
}
/**
* Add an item to the head of the internal list
*
* @param item Item to insert
*/
public unshift(item: any): TUndefinable<any> /* O(1) */ {
const length = this.internalList.length;
this.headIndex = (this.headIndex - 1 + length) & this.capacityMask;
this.internalList[this.headIndex] = item;
if (this.tailIndex === this.headIndex) {
this.growList();
}
if (this.headIndex < this.tailIndex) {
return this.tailIndex - this.headIndex;
} else {
return this.capacityMask + 1 - (this.headIndex - this.tailIndex);
}
}
/**
* Remove and return the first item on the internal list
*/
public shift(): TUndefinable<any> /* O(1) */ {
const headIndex = this.headIndex;
if (headIndex === this.tailIndex) {
return undefined;
}
const item = this.internalList[headIndex];
this.internalList[headIndex] = undefined;
this.headIndex = (headIndex + 1) & this.capacityMask;
if (headIndex < 2 && this.tailIndex > 1e4 && this.tailIndex <= this.internalList.length >>> 2) {
this.shrinkList();
}
return item;
}
/**
* Add an item to the tail of the internal list
*
* @param item Item to insert
*/
public push(item: any): number /* O(1) */ {
const tailIndex = this.tailIndex;
this.internalList[tailIndex] = item;
this.tailIndex = (tailIndex + 1) & this.capacityMask;
if (this.tailIndex === this.headIndex) {
this.growList();
}
if (this.headIndex < this.tailIndex) {
return this.tailIndex - this.headIndex;
} else {
return this.capacityMask + 1 - (this.headIndex - this.tailIndex);
}
}
/**
* Remove and return the last item on the internal list
*/
public pop(): any /* O(1) */ {
const tailIndex = this.tailIndex;
if (tailIndex === this.headIndex) {
return undefined;
}
const length = this.internalList.length;
this.tailIndex = (tailIndex - 1 + length) & this.capacityMask;
const item = this.internalList[this.tailIndex];
this.internalList[this.tailIndex] = undefined;
if (this.headIndex < 2 && tailIndex > 1e4 && tailIndex <= length >>> 2) {
this.shrinkList();
}
return item;
}
/**
* Remove and return the item at the specified index from the internal list
*
* @param index
*/
public remove(index: number): TUndefinable<any> /* O(n) */ {
if (this.isEmpty()) {
return undefined;
}
const size = this.getSize();
const length = this.internalList.length;
if (index >= size || index < -size) {
return undefined;
}
if (index < 0) {
index += size;
}
index = (this.headIndex + index) & this.capacityMask;
const item = this.internalList[index];
let i;
if (index < size / 2) {
for (i = index; i > 0; i--) {
this.internalList[index] = this.internalList[
(index = (index - 1 + length) & this.capacityMask)
];
}
this.internalList[index] = undefined;
this.headIndex = (this.headIndex + 1 + length) & this.capacityMask;
} else {
for (i = size - 1 - index; i > 0; i--) {
this.internalList[index] = this.internalList[
(index = (index + 1 + length) & this.capacityMask)
];
}
this.internalList[index] = undefined;
this.tailIndex = (this.tailIndex - 1 + length) & this.capacityMask;
}
return item;
}
/**
* Check if the internal list is empty
*/
public isEmpty(): boolean /* O(1) */ {
return this.headIndex === this.tailIndex;
}
/**
* Get the internal list as array
*/
public toArray(): any[] /* O(n) */ {
return this.copyList(false);
}
/**
* Get the number of items in the internal list
*/
private getSize(): number /* O(1) */ {
if (this.headIndex === this.tailIndex) {
return 0;
}
if (this.headIndex < this.tailIndex) {
return this.tailIndex - this.headIndex;
} else {
return this.capacityMask + 1 - (this.headIndex - this.tailIndex);
}
}
/**
* Double the length of the internal list
*/
private growList(): void /* O(1) */ {
if (this.headIndex) {
this.internalList = this.copyList(true);
this.headIndex = 0;
}
this.tailIndex = this.internalList.length;
this.internalList.length *= 2;
this.capacityMask = (this.capacityMask << 1) | 1;
}
/**
* Copy the internal list to a new list
*
* @param shouldDoFullCopy Should it do a full copy
*/
private copyList(shouldDoFullCopy: boolean): any[] /* O(n) */ {
const tmp = [];
const tmpList = this.internalList;
const length = tmpList.length;
let i;
if (shouldDoFullCopy || this.headIndex > this.tailIndex) {
for (i = this.headIndex; i < length; i++) {
tmp.push(tmpList[i]);
}
for (i = 0; i < this.tailIndex; i++) {
tmp.push(tmpList[i]);
}
} else {
for (i = this.headIndex; i < this.tailIndex; i++) {
tmp.push(tmpList[i]);
}
}
return tmp;
}
/**
* Shrink the internal list
*/
private shrinkList(): void /* O(1) */ {
this.internalList.length >>>= 1;
this.capacityMask >>>= 1;
}
}