forked from phishman3579/java-algorithms-implementation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Queue.java
695 lines (608 loc) · 18.3 KB
/
Queue.java
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
package com.jwetherell.algorithms.data_structures;
import com.jwetherell.algorithms.data_structures.interfaces.IQueue;
/**
* In computer science, a queue is a particular kind of abstract data type or collection in which the entities in the collection are kept in order and the principal (or only) operations
* on the collection are the addition of entities to the rear terminal position, known as enqueue, and removal of entities from the front terminal position, known as dequeue.
* <p>
* @see <a href="https://en.wikipedia.org/wiki/Queue_(abstract_data_type)">Queue (Wikipedia)</a>
* <br>
* @author Justin Wetherell <[email protected]>
*/
@SuppressWarnings("unchecked")
public interface Queue<T> extends IQueue<T> {
/**
* This queue implementation is backed by an array.
*
* @author Justin Wetherell <[email protected]>
*/
public static class ArrayQueue<T> implements Queue<T> {
private static final int MINIMUM_SIZE = 1024;
private T[] array = (T[]) new Object[MINIMUM_SIZE];
private int lastIndex = 0;
private int firstIndex = 0;
/**
* {@inheritDoc}
*/
@Override
public boolean offer(T value) {
if (size() >= array.length)
grow(size());
array[lastIndex % array.length] = value;
lastIndex++;
return true;
}
/**
* {@inheritDoc}
*/
@Override
public T poll() {
int size = lastIndex - firstIndex;
if (size < 0) return null;
T t = array[firstIndex % array.length];
array[firstIndex % array.length] = null;
firstIndex++;
size = lastIndex - firstIndex;
if (size <= 0) {
// Removed last element
lastIndex = 0;
firstIndex = 0;
}
int shrinkSize = array.length>>1;
if (shrinkSize >= MINIMUM_SIZE && size < shrinkSize)
shrink();
return t;
}
/**
* {@inheritDoc}
*/
@Override
public T peek() {
return array[firstIndex % array.length];
}
/**
* {@inheritDoc}
*/
@Override
public boolean remove(T value) {
for (int i=0; i < array.length; i++) {
T obj = array[i];
// if obj is null, it should return false (not NPE)
if (value.equals(obj)) return remove(i);
}
return false;
}
private boolean remove(int index) {
if (index<0 || index >= array.length) return false;
if (index==firstIndex) return (poll()!=null);
int adjIndex = index % array.length;
int adjLastIndex = (lastIndex-1) % array.length;
if (adjIndex != adjLastIndex) {
// Shift the array down one spot
System.arraycopy(array, index+1, array, index, (array.length - (index+1)));
if (adjLastIndex < firstIndex) {
//Wrapped around array
array[array.length-1] = array[0];
System.arraycopy(array, 1, array, 0, firstIndex-1);
}
}
array[adjLastIndex] = null;
int shrinkSize = array.length>>1;
if (shrinkSize >= MINIMUM_SIZE && size() < shrinkSize)
shrink();
lastIndex--;
return true;
}
// Triple the size of the underlying array and rearrange to make sequential
private void grow(int size) {
int growSize = (size + (size<<1));
T[] temp = (T[]) new Object[growSize];
// Since the array can wrap around, make sure you grab the first chunk
int adjLast = lastIndex % array.length;
if (adjLast > 0 && adjLast <= firstIndex) {
System.arraycopy(array, 0, temp, array.length-adjLast, adjLast);
}
// Copy the remaining
System.arraycopy(array, firstIndex, temp, 0, array.length - firstIndex);
array = null;
array = temp;
lastIndex = (lastIndex - firstIndex);
firstIndex = 0;
}
// Shrink the array by 50% and rearrange to make sequential
private void shrink() {
int shrinkSize = array.length>>1;
T[] temp = (T[]) new Object[shrinkSize];
// Since the array can wrap around, make sure you grab the first chunk
int adjLast = lastIndex % array.length;
int endIndex = (lastIndex>array.length) ? array.length : lastIndex;
if (adjLast <= firstIndex) {
System.arraycopy(array, 0, temp, array.length - firstIndex, adjLast);
}
// Copy the remaining
System.arraycopy(array, firstIndex, temp, 0, endIndex-firstIndex);
array = null;
array = temp;
lastIndex = (lastIndex - firstIndex);
firstIndex = 0;
}
/**
* {@inheritDoc}
*/
@Override
public void clear() {
firstIndex = 0;
lastIndex = 0;
}
/**
* {@inheritDoc}
*/
@Override
public boolean contains(T value) {
for (int i=0; i < array.length; i++) {
T obj = array[i];
// if obj is null, it should return false (not NPE)
if (value.equals(obj)) return true;
}
return false;
}
/**
* {@inheritDoc}
*/
@Override
public boolean validate() {
if (size()==0) return true;
int localSize = 0;
int realFirst = firstIndex;
if (firstIndex>array.length)
realFirst = firstIndex%array.length;
int realLast = lastIndex;
if (lastIndex>array.length)
realLast = lastIndex%array.length;
for (int i=0; i<array.length; i++) {
T t = array[i];
if ((realFirst==realLast) ||
(realFirst<realLast && (i>=realFirst && i<realLast)) ||
(realLast<realFirst && (i<realLast || i>=realFirst))
) {
if (t==null)
return false;
localSize++;
} else {
if (t!=null)
return false;
}
}
return (localSize==size());
}
/**
* {@inheritDoc}
*/
@Override
public int size() {
return lastIndex - firstIndex;
}
/**
* {@inheritDoc}
*/
@Override
public java.util.Queue<T> toQueue() {
return (new JavaCompatibleArrayQueue<T>(this));
}
/**
* {@inheritDoc}
*/
@Override
public java.util.Collection<T> toCollection() {
return (new JavaCompatibleArrayQueue<T>(this));
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
for (int i = lastIndex - 1; i >= firstIndex; i--) {
builder.append(array[i%array.length]).append(", ");
}
return builder.toString();
}
}
/**
* This queue implementation is backed by a linked list.
*
* @author Justin Wetherell <[email protected]>
*/
public static class LinkedQueue<T> implements Queue<T> {
private Node<T> head = null;
private Node<T> tail = null;
private int size = 0;
public LinkedQueue() {
head = null;
tail = null;
size = 0;
}
/**
* {@inheritDoc}
*/
@Override
public boolean offer(T value) {
return add(new Node<T>(value));
}
/**
* Enqueue the node in the queue.
*
* @param node
* to enqueue.
*/
private boolean add(Node<T> node) {
if (head == null) {
head = node;
tail = node;
} else {
Node<T> oldHead = head;
head = node;
node.next = oldHead;
oldHead.prev = node;
}
size++;
return true;
}
/**
* {@inheritDoc}
*/
@Override
public T poll() {
T result = null;
if (tail != null) {
result = tail.value;
Node<T> prev = tail.prev;
if (prev != null) {
prev.next = null;
tail = prev;
} else {
head = null;
tail = null;
}
size--;
}
return result;
}
/**
* {@inheritDoc}
*/
@Override
public T peek() {
return (tail!=null)?tail.value:null;
}
/**
* {@inheritDoc}
*/
@Override
public boolean remove(T value) {
// Find the node
Node<T> node = head;
while (node != null && (!node.value.equals(value))) {
node = node.next;
}
if (node == null) return false;
return remove(node);
}
private boolean remove(Node<T> node) {
// Update the tail, if needed
if (node.equals(tail))
tail = node.prev;
Node<T> prev = node.prev;
Node<T> next = node.next;
if (prev != null && next != null) {
prev.next = next;
next.prev = prev;
} else if (prev != null && next == null) {
prev.next = null;
} else if (prev == null && next != null) {
// Node is the head
next.prev = null;
head = next;
} else {
// prev==null && next==null
head = null;
}
size--;
return true;
}
/**
* {@inheritDoc}
*/
@Override
public void clear() {
head = null;
size = 0;
}
/**
* {@inheritDoc}
*/
@Override
public boolean contains(T value) {
if (head == null)
return false;
Node<T> node = head;
while (node != null) {
if (node.value.equals(value))
return true;
node = node.next;
}
return false;
}
/**
* {@inheritDoc}
*/
@Override
public int size() {
return size;
}
/**
* {@inheritDoc}
*/
@Override
public boolean validate() {
java.util.Set<T> keys = new java.util.HashSet<T>();
Node<T> node = head;
if (node!=null) {
keys.add(node.value);
if (node.prev!=null) return false;
Node<T> child = node.next;
while (child!=null) {
if (!validate(child,keys)) return false;
child = child.next;
}
}
return (keys.size()==size());
}
private boolean validate(Node<T> node, java.util.Set<T> keys) {
if (node.value==null) return false;
keys.add(node.value);
Node<T> child = node.next;
if (child!=null) {
if (!child.prev.equals(node)) return false;
if (!validate(child,keys)) return false;
} else {
if (!node.equals(tail)) return false;
}
return true;
}
/**
* {@inheritDoc}
*/
@Override
public java.util.Queue<T> toQueue() {
return (new JavaCompatibleLinkedQueue<T>(this));
}
/**
* {@inheritDoc}
*/
@Override
public java.util.Collection<T> toCollection() {
return (new JavaCompatibleLinkedQueue<T>(this));
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
Node<T> node = head;
while (node != null) {
builder.append(node.value).append(", ");
node = node.next;
}
return builder.toString();
}
private static class Node<T> {
private T value = null;
private Node<T> prev = null;
private Node<T> next = null;
private Node(T value) {
this.value = value;
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return "value=" + value + " previous=" + ((prev != null) ? prev.value : "NULL") + " next=" + ((next != null) ? next.value : "NULL");
}
}
}
public static class JavaCompatibleArrayQueue<T> extends java.util.AbstractQueue<T> {
private ArrayQueue<T> queue = null;
public JavaCompatibleArrayQueue(ArrayQueue<T> queue) {
this.queue = queue;
}
/**
* {@inheritDoc}
*/
@Override
public boolean add(T value) {
return queue.offer(value);
}
/**
* {@inheritDoc}
*/
@Override
public boolean remove(Object value) {
return queue.remove((T)value);
}
/**
* {@inheritDoc}
*/
@Override
public boolean contains(Object value) {
return queue.contains((T)value);
}
/**
* {@inheritDoc}
*/
@Override
public boolean offer(T value) {
return queue.offer(value);
}
/**
* {@inheritDoc}
*/
@Override
public T peek() {
return queue.peek();
}
/**
* {@inheritDoc}
*/
@Override
public T poll() {
return queue.poll();
}
/**
* {@inheritDoc}
*/
@Override
public int size() {
return queue.size();
}
/**
* {@inheritDoc}
*/
@Override
public java.util.Iterator<T> iterator() {
return (new ArrayQueueIterator<T>(queue));
}
private static class ArrayQueueIterator<T> implements java.util.Iterator<T> {
private ArrayQueue<T> queue = null;
private int last = -1;
private int index = 0; //offset from first
private ArrayQueueIterator(ArrayQueue<T> queue) {
this.queue = queue;
}
/**
* {@inheritDoc}
*/
@Override
public boolean hasNext() {
return ((queue.firstIndex+index) < queue.lastIndex);
}
/**
* {@inheritDoc}
*/
@Override
public T next() {
if (queue.firstIndex+index < queue.lastIndex) {
last = queue.firstIndex+index;
return queue.array[(queue.firstIndex + index++) % queue.array.length];
}
return null;
}
/**
* {@inheritDoc}
*/
@Override
public void remove() {
queue.remove(last);
}
}
}
public static class JavaCompatibleLinkedQueue<T> extends java.util.AbstractQueue<T> {
private LinkedQueue<T> queue = null;
public JavaCompatibleLinkedQueue(LinkedQueue<T> queue) {
this.queue = queue;
}
/**
* {@inheritDoc}
*/
@Override
public boolean add(T value) {
return queue.offer(value);
}
/**
* {@inheritDoc}
*/
@Override
public boolean remove(Object value) {
return queue.remove((T)value);
}
/**
* {@inheritDoc}
*/
@Override
public boolean contains(Object value) {
return queue.contains((T)value);
}
/**
* {@inheritDoc}
*/
@Override
public boolean offer(T value) {
return queue.offer(value);
}
/**
* {@inheritDoc}
*/
@Override
public T peek() {
return queue.peek();
}
/**
* {@inheritDoc}
*/
@Override
public T poll() {
return queue.poll();
}
/**
* {@inheritDoc}
*/
@Override
public int size() {
return queue.size();
}
/**
* {@inheritDoc}
*/
@Override
public java.util.Iterator<T> iterator() {
return (new LinkedQueueIterator<T>(queue));
}
private static class LinkedQueueIterator<T> implements java.util.Iterator<T> {
private LinkedQueue<T> queue = null;
private LinkedQueue.Node<T> lastNode = null;
private LinkedQueue.Node<T> nextNode = null;
private LinkedQueueIterator(LinkedQueue<T> queue) {
this.queue = queue;
this.nextNode = queue.tail;
}
/**
* {@inheritDoc}
*/
@Override
public boolean hasNext() {
return (nextNode!=null);
}
/**
* {@inheritDoc}
*/
@Override
public T next() {
LinkedQueue.Node<T> current = nextNode;
lastNode = current;
if (current!=null) {
nextNode = current.prev;
return current.value;
}
return null;
}
/**
* {@inheritDoc}
*/
@Override
public void remove() {
queue.remove(lastNode);
}
}
}
}