ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/ArrayDeque.java
Revision: 1.24
Committed: Sat Sep 17 13:21:19 2005 UTC (18 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.23: +0 -35 lines
Log Message:
Delete old delete

File Contents

# User Rev Content
1 dl 1.1 /*
2     * Written by Josh Bloch of Google Inc. and released to the public domain,
3     * as explained at http://creativecommons.org/licenses/publicdomain.
4     */
5    
6     package java.util;
7 jsr166 1.15 import java.util.*; // for javadoc (till 6280605 is fixed)
8 dl 1.1 import java.io.*;
9    
10     /**
11     * Resizable-array implementation of the {@link Deque} interface. Array
12     * deques have no capacity restrictions; they grow as necessary to support
13     * usage. They are not thread-safe; in the absence of external
14     * synchronization, they do not support concurrent access by multiple threads.
15     * Null elements are prohibited. This class is likely to be faster than
16 dl 1.2 * {@link Stack} when used as a stack, and faster than {@link LinkedList}
17 dl 1.1 * when used as a queue.
18     *
19     * <p>Most <tt>ArrayDeque</tt> operations run in amortized constant time.
20     * Exceptions include {@link #remove(Object) remove}, {@link
21     * #removeFirstOccurrence removeFirstOccurrence}, {@link #removeLastOccurrence
22 jsr166 1.9 * removeLastOccurrence}, {@link #contains contains}, {@link #iterator
23 dl 1.1 * iterator.remove()}, and the bulk operations, all of which run in linear
24     * time.
25     *
26     * <p>The iterators returned by this class's <tt>iterator</tt> method are
27     * <i>fail-fast</i>: If the deque is modified at any time after the iterator
28 jsr166 1.7 * is created, in any way except through the iterator's own <tt>remove</tt>
29     * method, the iterator will generally throw a {@link
30     * ConcurrentModificationException}. Thus, in the face of concurrent
31     * modification, the iterator fails quickly and cleanly, rather than risking
32     * arbitrary, non-deterministic behavior at an undetermined time in the
33     * future.
34 dl 1.1 *
35     * <p>Note that the fail-fast behavior of an iterator cannot be guaranteed
36     * as it is, generally speaking, impossible to make any hard guarantees in the
37     * presence of unsynchronized concurrent modification. Fail-fast iterators
38 dl 1.5 * throw <tt>ConcurrentModificationException</tt> on a best-effort basis.
39 dl 1.1 * Therefore, it would be wrong to write a program that depended on this
40     * exception for its correctness: <i>the fail-fast behavior of iterators
41     * should be used only to detect bugs.</i>
42     *
43     * <p>This class and its iterator implement all of the
44 jsr166 1.9 * <em>optional</em> methods of the {@link Collection} and {@link
45     * Iterator} interfaces.
46     *
47     * <p>This class is a member of the
48     * <a href="{@docRoot}/../guide/collections/index.html">
49     * Java Collections Framework</a>.
50 dl 1.1 *
51     * @author Josh Bloch and Doug Lea
52     * @since 1.6
53     * @param <E> the type of elements held in this collection
54     */
55     public class ArrayDeque<E> extends AbstractCollection<E>
56     implements Deque<E>, Cloneable, Serializable
57     {
58     /**
59 dl 1.4 * The array in which the elements of the deque are stored.
60 dl 1.1 * The capacity of the deque is the length of this array, which is
61     * always a power of two. The array is never allowed to become
62     * full, except transiently within an addX method where it is
63     * resized (see doubleCapacity) immediately upon becoming full,
64     * thus avoiding head and tail wrapping around to equal each
65     * other. We also guarantee that all array cells not holding
66     * deque elements are always null.
67     */
68     private transient E[] elements;
69    
70     /**
71     * The index of the element at the head of the deque (which is the
72     * element that would be removed by remove() or pop()); or an
73     * arbitrary number equal to tail if the deque is empty.
74     */
75     private transient int head;
76    
77     /**
78     * The index at which the next element would be added to the tail
79     * of the deque (via addLast(E), add(E), or push(E)).
80     */
81     private transient int tail;
82    
83     /**
84     * The minimum capacity that we'll use for a newly created deque.
85     * Must be a power of 2.
86     */
87     private static final int MIN_INITIAL_CAPACITY = 8;
88    
89     // ****** Array allocation and resizing utilities ******
90    
91     /**
92     * Allocate empty array to hold the given number of elements.
93     *
94 jsr166 1.9 * @param numElements the number of elements to hold
95 dl 1.1 */
96 dl 1.5 private void allocateElements(int numElements) {
97 dl 1.1 int initialCapacity = MIN_INITIAL_CAPACITY;
98     // Find the best power of two to hold elements.
99     // Tests "<=" because arrays aren't kept full.
100     if (numElements >= initialCapacity) {
101     initialCapacity = numElements;
102     initialCapacity |= (initialCapacity >>> 1);
103     initialCapacity |= (initialCapacity >>> 2);
104     initialCapacity |= (initialCapacity >>> 4);
105     initialCapacity |= (initialCapacity >>> 8);
106     initialCapacity |= (initialCapacity >>> 16);
107     initialCapacity++;
108    
109     if (initialCapacity < 0) // Too many elements, must back off
110     initialCapacity >>>= 1;// Good luck allocating 2 ^ 30 elements
111     }
112     elements = (E[]) new Object[initialCapacity];
113     }
114    
115     /**
116     * Double the capacity of this deque. Call only when full, i.e.,
117     * when head and tail have wrapped around to become equal.
118     */
119     private void doubleCapacity() {
120 dl 1.5 assert head == tail;
121 dl 1.1 int p = head;
122     int n = elements.length;
123     int r = n - p; // number of elements to the right of p
124     int newCapacity = n << 1;
125     if (newCapacity < 0)
126     throw new IllegalStateException("Sorry, deque too big");
127     Object[] a = new Object[newCapacity];
128     System.arraycopy(elements, p, a, 0, r);
129     System.arraycopy(elements, 0, a, r, p);
130     elements = (E[])a;
131     head = 0;
132     tail = n;
133     }
134    
135     /**
136 jsr166 1.7 * Copies the elements from our element array into the specified array,
137 dl 1.1 * in order (from first to last element in the deque). It is assumed
138     * that the array is large enough to hold all elements in the deque.
139     *
140     * @return its argument
141     */
142     private <T> T[] copyElements(T[] a) {
143     if (head < tail) {
144     System.arraycopy(elements, head, a, 0, size());
145     } else if (head > tail) {
146     int headPortionLen = elements.length - head;
147     System.arraycopy(elements, head, a, 0, headPortionLen);
148     System.arraycopy(elements, 0, a, headPortionLen, tail);
149     }
150     return a;
151     }
152    
153     /**
154 dl 1.4 * Constructs an empty array deque with an initial capacity
155 dl 1.1 * sufficient to hold 16 elements.
156     */
157     public ArrayDeque() {
158     elements = (E[]) new Object[16];
159     }
160    
161     /**
162     * Constructs an empty array deque with an initial capacity
163     * sufficient to hold the specified number of elements.
164     *
165     * @param numElements lower bound on initial capacity of the deque
166     */
167     public ArrayDeque(int numElements) {
168     allocateElements(numElements);
169     }
170    
171     /**
172     * Constructs a deque containing the elements of the specified
173     * collection, in the order they are returned by the collection's
174     * iterator. (The first element returned by the collection's
175     * iterator becomes the first element, or <i>front</i> of the
176     * deque.)
177     *
178     * @param c the collection whose elements are to be placed into the deque
179     * @throws NullPointerException if the specified collection is null
180     */
181     public ArrayDeque(Collection<? extends E> c) {
182     allocateElements(c.size());
183     addAll(c);
184     }
185    
186     // The main insertion and extraction methods are addFirst,
187     // addLast, pollFirst, pollLast. The other methods are defined in
188     // terms of these.
189    
190     /**
191 dl 1.5 * Inserts the specified element at the front of this deque.
192 dl 1.1 *
193 jsr166 1.9 * @param e the element to add
194     * @throws NullPointerException if the specified element is null
195 dl 1.1 */
196     public void addFirst(E e) {
197     if (e == null)
198     throw new NullPointerException();
199     elements[head = (head - 1) & (elements.length - 1)] = e;
200 dl 1.5 if (head == tail)
201 dl 1.1 doubleCapacity();
202     }
203    
204     /**
205 dl 1.6 * Inserts the specified element at the end of this deque.
206 jsr166 1.14 *
207     * <p>This method is equivalent to {@link #add}.
208 dl 1.1 *
209 jsr166 1.9 * @param e the element to add
210     * @throws NullPointerException if the specified element is null
211 dl 1.1 */
212     public void addLast(E e) {
213     if (e == null)
214     throw new NullPointerException();
215     elements[tail] = e;
216     if ( (tail = (tail + 1) & (elements.length - 1)) == head)
217     doubleCapacity();
218     }
219    
220     /**
221 dl 1.5 * Inserts the specified element at the front of this deque.
222 dl 1.1 *
223 jsr166 1.9 * @param e the element to add
224 jsr166 1.15 * @return <tt>true</tt> (as specified by {@link Deque#offerFirst})
225 jsr166 1.9 * @throws NullPointerException if the specified element is null
226 dl 1.1 */
227     public boolean offerFirst(E e) {
228     addFirst(e);
229     return true;
230     }
231    
232     /**
233 dl 1.6 * Inserts the specified element at the end of this deque.
234 dl 1.1 *
235 jsr166 1.9 * @param e the element to add
236 jsr166 1.15 * @return <tt>true</tt> (as specified by {@link Deque#offerLast})
237 jsr166 1.9 * @throws NullPointerException if the specified element is null
238 dl 1.1 */
239     public boolean offerLast(E e) {
240     addLast(e);
241     return true;
242     }
243    
244     /**
245 jsr166 1.9 * @throws NoSuchElementException {@inheritDoc}
246 dl 1.1 */
247     public E removeFirst() {
248     E x = pollFirst();
249     if (x == null)
250     throw new NoSuchElementException();
251     return x;
252     }
253    
254     /**
255 jsr166 1.9 * @throws NoSuchElementException {@inheritDoc}
256 dl 1.1 */
257     public E removeLast() {
258     E x = pollLast();
259     if (x == null)
260     throw new NoSuchElementException();
261     return x;
262     }
263    
264 jsr166 1.9 public E pollFirst() {
265     int h = head;
266     E result = elements[h]; // Element is null if deque empty
267     if (result == null)
268     return null;
269     elements[h] = null; // Must null out slot
270     head = (h + 1) & (elements.length - 1);
271     return result;
272 dl 1.1 }
273    
274 jsr166 1.9 public E pollLast() {
275     int t = (tail - 1) & (elements.length - 1);
276     E result = elements[t];
277     if (result == null)
278     return null;
279     elements[t] = null;
280     tail = t;
281     return result;
282 dl 1.1 }
283    
284     /**
285 jsr166 1.9 * @throws NoSuchElementException {@inheritDoc}
286 dl 1.1 */
287     public E getFirst() {
288     E x = elements[head];
289     if (x == null)
290     throw new NoSuchElementException();
291     return x;
292     }
293    
294     /**
295 jsr166 1.9 * @throws NoSuchElementException {@inheritDoc}
296 dl 1.1 */
297     public E getLast() {
298     E x = elements[(tail - 1) & (elements.length - 1)];
299     if (x == null)
300     throw new NoSuchElementException();
301     return x;
302     }
303    
304 jsr166 1.9 public E peekFirst() {
305     return elements[head]; // elements[head] is null if deque empty
306     }
307    
308     public E peekLast() {
309     return elements[(tail - 1) & (elements.length - 1)];
310     }
311    
312 dl 1.1 /**
313     * Removes the first occurrence of the specified element in this
314 jsr166 1.9 * deque (when traversing the deque from head to tail).
315     * If the deque does not contain the element, it is unchanged.
316     * More formally, removes the first element <tt>e</tt> such that
317     * <tt>o.equals(e)</tt> (if such an element exists).
318 jsr166 1.12 * Returns <tt>true</tt> if this deque contained the specified element
319     * (or equivalently, if this deque changed as a result of the call).
320 dl 1.1 *
321 dl 1.5 * @param o element to be removed from this deque, if present
322 dl 1.1 * @return <tt>true</tt> if the deque contained the specified element
323     */
324 dl 1.5 public boolean removeFirstOccurrence(Object o) {
325     if (o == null)
326 dl 1.1 return false;
327     int mask = elements.length - 1;
328     int i = head;
329     E x;
330     while ( (x = elements[i]) != null) {
331 dl 1.5 if (o.equals(x)) {
332 dl 1.1 delete(i);
333     return true;
334     }
335     i = (i + 1) & mask;
336     }
337     return false;
338     }
339    
340     /**
341     * Removes the last occurrence of the specified element in this
342 jsr166 1.9 * deque (when traversing the deque from head to tail).
343     * If the deque does not contain the element, it is unchanged.
344     * More formally, removes the last element <tt>e</tt> such that
345     * <tt>o.equals(e)</tt> (if such an element exists).
346 jsr166 1.12 * Returns <tt>true</tt> if this deque contained the specified element
347     * (or equivalently, if this deque changed as a result of the call).
348 dl 1.1 *
349 dl 1.5 * @param o element to be removed from this deque, if present
350 dl 1.1 * @return <tt>true</tt> if the deque contained the specified element
351     */
352 dl 1.5 public boolean removeLastOccurrence(Object o) {
353     if (o == null)
354 dl 1.1 return false;
355     int mask = elements.length - 1;
356     int i = (tail - 1) & mask;
357     E x;
358     while ( (x = elements[i]) != null) {
359 dl 1.5 if (o.equals(x)) {
360 dl 1.1 delete(i);
361     return true;
362     }
363     i = (i - 1) & mask;
364     }
365     return false;
366     }
367    
368     // *** Queue methods ***
369    
370     /**
371 dl 1.6 * Inserts the specified element at the end of this deque.
372 dl 1.1 *
373     * <p>This method is equivalent to {@link #addLast}.
374     *
375 jsr166 1.9 * @param e the element to add
376 jsr166 1.15 * @return <tt>true</tt> (as specified by {@link Collection#add})
377 jsr166 1.9 * @throws NullPointerException if the specified element is null
378 dl 1.1 */
379     public boolean add(E e) {
380     addLast(e);
381     return true;
382     }
383    
384     /**
385 jsr166 1.9 * Inserts the specified element at the end of this deque.
386 dl 1.1 *
387 jsr166 1.9 * <p>This method is equivalent to {@link #offerLast}.
388 dl 1.1 *
389 jsr166 1.9 * @param e the element to add
390 jsr166 1.15 * @return <tt>true</tt> (as specified by {@link Queue#offer})
391 jsr166 1.9 * @throws NullPointerException if the specified element is null
392 dl 1.1 */
393 jsr166 1.9 public boolean offer(E e) {
394     return offerLast(e);
395 dl 1.1 }
396    
397     /**
398     * Retrieves and removes the head of the queue represented by this deque.
399 jsr166 1.15 *
400     * This method differs from {@link #poll poll} only in that it throws an
401 jsr166 1.9 * exception if this deque is empty.
402 dl 1.1 *
403     * <p>This method is equivalent to {@link #removeFirst}.
404     *
405     * @return the head of the queue represented by this deque
406 jsr166 1.9 * @throws NoSuchElementException {@inheritDoc}
407 dl 1.1 */
408     public E remove() {
409     return removeFirst();
410     }
411    
412     /**
413 jsr166 1.9 * Retrieves and removes the head of the queue represented by this deque
414     * (in other words, the first element of this deque), or returns
415     * <tt>null</tt> if this deque is empty.
416 dl 1.1 *
417 jsr166 1.9 * <p>This method is equivalent to {@link #pollFirst}.
418 dl 1.1 *
419     * @return the head of the queue represented by this deque, or
420 jsr166 1.9 * <tt>null</tt> if this deque is empty
421 dl 1.1 */
422 jsr166 1.9 public E poll() {
423     return pollFirst();
424 dl 1.1 }
425    
426     /**
427     * Retrieves, but does not remove, the head of the queue represented by
428 jsr166 1.15 * this deque. This method differs from {@link #peek peek} only in
429     * that it throws an exception if this deque is empty.
430 dl 1.1 *
431 jsr166 1.8 * <p>This method is equivalent to {@link #getFirst}.
432 dl 1.1 *
433     * @return the head of the queue represented by this deque
434 jsr166 1.9 * @throws NoSuchElementException {@inheritDoc}
435 dl 1.1 */
436     public E element() {
437     return getFirst();
438     }
439    
440 jsr166 1.9 /**
441     * Retrieves, but does not remove, the head of the queue represented by
442     * this deque, or returns <tt>null</tt> if this deque is empty.
443     *
444     * <p>This method is equivalent to {@link #peekFirst}.
445     *
446     * @return the head of the queue represented by this deque, or
447     * <tt>null</tt> if this deque is empty
448     */
449     public E peek() {
450     return peekFirst();
451     }
452    
453 dl 1.1 // *** Stack methods ***
454    
455     /**
456     * Pushes an element onto the stack represented by this deque. In other
457 dl 1.5 * words, inserts the element at the front of this deque.
458 dl 1.1 *
459     * <p>This method is equivalent to {@link #addFirst}.
460     *
461     * @param e the element to push
462 jsr166 1.9 * @throws NullPointerException if the specified element is null
463 dl 1.1 */
464     public void push(E e) {
465     addFirst(e);
466     }
467    
468     /**
469     * Pops an element from the stack represented by this deque. In other
470 dl 1.2 * words, removes and returns the first element of this deque.
471 dl 1.1 *
472     * <p>This method is equivalent to {@link #removeFirst()}.
473     *
474     * @return the element at the front of this deque (which is the top
475 jsr166 1.9 * of the stack represented by this deque)
476     * @throws NoSuchElementException {@inheritDoc}
477 dl 1.1 */
478     public E pop() {
479     return removeFirst();
480     }
481    
482     /**
483 jsr166 1.7 * Removes the element at the specified position in the elements array,
484 jsr166 1.9 * adjusting head and tail as necessary. This can result in motion of
485     * elements backwards or forwards in the array.
486 dl 1.1 *
487 dl 1.5 * <p>This method is called delete rather than remove to emphasize
488 jsr166 1.9 * that its semantics differ from those of {@link List#remove(int)}.
489 dl 1.5 *
490 dl 1.1 * @return true if elements moved backwards
491     */
492     private boolean delete(int i) {
493 dl 1.23 final E[] elements = this.elements;
494     final int mask = elements.length - 1;
495     final int h = head;
496     final int t = tail;
497     final int front = (i - h) & mask;
498     final int back = (t - i) & mask;
499    
500     // Invariant: head <= i < tail mod circularity
501     if (front >= ((t - h) & mask))
502     throw new ConcurrentModificationException();
503    
504     // Optimize for least element motion
505     if (front < back) {
506     if (h <= i) {
507     System.arraycopy(elements, h, elements, h + 1, front);
508     } else { // Wrap around
509     System.arraycopy(elements, 0, elements, 1, i);
510     elements[0] = elements[mask];
511     System.arraycopy(elements, h, elements, h + 1, mask - h);
512     }
513     elements[h] = null;
514     head = (h + 1) & mask;
515     return false;
516     } else {
517     if (i < t) { // Copy the null tail as well
518     System.arraycopy(elements, i + 1, elements, i, back);
519     tail = t - 1;
520     } else { // Wrap around
521     System.arraycopy(elements, i + 1, elements, i, mask - i);
522     elements[mask] = elements[0];
523     System.arraycopy(elements, 1, elements, 0, t);
524     tail = (t - 1) & mask;
525     }
526     return true;
527     }
528     }
529    
530 dl 1.1 // *** Collection Methods ***
531    
532     /**
533     * Returns the number of elements in this deque.
534     *
535     * @return the number of elements in this deque
536     */
537     public int size() {
538     return (tail - head) & (elements.length - 1);
539     }
540    
541     /**
542 jsr166 1.9 * Returns <tt>true</tt> if this deque contains no elements.
543 dl 1.1 *
544 jsr166 1.9 * @return <tt>true</tt> if this deque contains no elements
545 dl 1.1 */
546     public boolean isEmpty() {
547     return head == tail;
548     }
549    
550     /**
551     * Returns an iterator over the elements in this deque. The elements
552     * will be ordered from first (head) to last (tail). This is the same
553     * order that elements would be dequeued (via successive calls to
554     * {@link #remove} or popped (via successive calls to {@link #pop}).
555 dl 1.5 *
556 jsr166 1.18 * @return an iterator over the elements in this deque
557 dl 1.1 */
558     public Iterator<E> iterator() {
559     return new DeqIterator();
560     }
561    
562 dl 1.16 public Iterator<E> descendingIterator() {
563     return new DescendingIterator();
564     }
565    
566 dl 1.1 private class DeqIterator implements Iterator<E> {
567     /**
568     * Index of element to be returned by subsequent call to next.
569     */
570     private int cursor = head;
571    
572     /**
573     * Tail recorded at construction (also in remove), to stop
574     * iterator and also to check for comodification.
575     */
576     private int fence = tail;
577    
578     /**
579     * Index of element returned by most recent call to next.
580     * Reset to -1 if element is deleted by a call to remove.
581     */
582     private int lastRet = -1;
583    
584     public boolean hasNext() {
585     return cursor != fence;
586     }
587    
588     public E next() {
589     E result;
590     if (cursor == fence)
591     throw new NoSuchElementException();
592     // This check doesn't catch all possible comodifications,
593     // but does catch the ones that corrupt traversal
594     if (tail != fence || (result = elements[cursor]) == null)
595     throw new ConcurrentModificationException();
596     lastRet = cursor;
597     cursor = (cursor + 1) & (elements.length - 1);
598     return result;
599     }
600    
601     public void remove() {
602     if (lastRet < 0)
603     throw new IllegalStateException();
604 dl 1.17 if (delete(lastRet)) // if left-shifted, undo increment in next()
605     cursor = (cursor - 1) & (elements.length - 1);
606 dl 1.1 lastRet = -1;
607     fence = tail;
608     }
609     }
610    
611 dl 1.16
612     private class DescendingIterator implements Iterator<E> {
613 jsr166 1.18 /*
614 dl 1.17 * This class is nearly a mirror-image of DeqIterator, using
615     * (tail-1) instead of head for initial cursor, (head-1)
616     * instead of tail for fence, and elements.length instead of -1
617     * for sentinel. It shares the same structure, but not many
618     * actual lines of code.
619 dl 1.16 */
620 dl 1.17 private int cursor = (tail - 1) & (elements.length - 1);
621     private int fence = (head - 1) & (elements.length - 1);
622 dl 1.16 private int lastRet = elements.length;
623    
624     public boolean hasNext() {
625     return cursor != fence;
626     }
627    
628     public E next() {
629     E result;
630     if (cursor == fence)
631     throw new NoSuchElementException();
632 jsr166 1.18 if (((head - 1) & (elements.length - 1)) != fence ||
633 dl 1.17 (result = elements[cursor]) == null)
634 dl 1.16 throw new ConcurrentModificationException();
635     lastRet = cursor;
636 dl 1.17 cursor = (cursor - 1) & (elements.length - 1);
637 dl 1.16 return result;
638     }
639    
640     public void remove() {
641     if (lastRet >= elements.length)
642     throw new IllegalStateException();
643 jsr166 1.18 if (!delete(lastRet))
644 dl 1.17 cursor = (cursor + 1) & (elements.length - 1);
645 dl 1.16 lastRet = elements.length;
646 dl 1.17 fence = (head - 1) & (elements.length - 1);
647 dl 1.16 }
648     }
649    
650 dl 1.1 /**
651 jsr166 1.9 * Returns <tt>true</tt> if this deque contains the specified element.
652     * More formally, returns <tt>true</tt> if and only if this deque contains
653     * at least one element <tt>e</tt> such that <tt>o.equals(e)</tt>.
654 dl 1.1 *
655     * @param o object to be checked for containment in this deque
656     * @return <tt>true</tt> if this deque contains the specified element
657     */
658     public boolean contains(Object o) {
659     if (o == null)
660     return false;
661     int mask = elements.length - 1;
662     int i = head;
663     E x;
664     while ( (x = elements[i]) != null) {
665     if (o.equals(x))
666     return true;
667     i = (i + 1) & mask;
668     }
669     return false;
670     }
671    
672     /**
673     * Removes a single instance of the specified element from this deque.
674 jsr166 1.9 * If the deque does not contain the element, it is unchanged.
675     * More formally, removes the first element <tt>e</tt> such that
676     * <tt>o.equals(e)</tt> (if such an element exists).
677 jsr166 1.12 * Returns <tt>true</tt> if this deque contained the specified element
678     * (or equivalently, if this deque changed as a result of the call).
679 jsr166 1.9 *
680     * <p>This method is equivalent to {@link #removeFirstOccurrence}.
681 dl 1.1 *
682 jsr166 1.9 * @param o element to be removed from this deque, if present
683 dl 1.1 * @return <tt>true</tt> if this deque contained the specified element
684     */
685 jsr166 1.9 public boolean remove(Object o) {
686     return removeFirstOccurrence(o);
687 dl 1.1 }
688    
689     /**
690     * Removes all of the elements from this deque.
691 jsr166 1.7 * The deque will be empty after this call returns.
692 dl 1.1 */
693     public void clear() {
694     int h = head;
695     int t = tail;
696     if (h != t) { // clear all cells
697     head = tail = 0;
698     int i = h;
699     int mask = elements.length - 1;
700     do {
701     elements[i] = null;
702     i = (i + 1) & mask;
703 jsr166 1.9 } while (i != t);
704 dl 1.1 }
705     }
706    
707     /**
708 dl 1.5 * Returns an array containing all of the elements in this deque
709 jsr166 1.10 * in proper sequence (from first to last element).
710 dl 1.1 *
711 jsr166 1.10 * <p>The returned array will be "safe" in that no references to it are
712     * maintained by this deque. (In other words, this method must allocate
713     * a new array). The caller is thus free to modify the returned array.
714 jsr166 1.13 *
715 jsr166 1.11 * <p>This method acts as bridge between array-based and collection-based
716     * APIs.
717     *
718 dl 1.5 * @return an array containing all of the elements in this deque
719 dl 1.1 */
720     public Object[] toArray() {
721     return copyElements(new Object[size()]);
722     }
723    
724     /**
725 jsr166 1.10 * Returns an array containing all of the elements in this deque in
726     * proper sequence (from first to last element); the runtime type of the
727     * returned array is that of the specified array. If the deque fits in
728     * the specified array, it is returned therein. Otherwise, a new array
729     * is allocated with the runtime type of the specified array and the
730     * size of this deque.
731     *
732     * <p>If this deque fits in the specified array with room to spare
733     * (i.e., the array has more elements than this deque), the element in
734     * the array immediately following the end of the deque is set to
735     * <tt>null</tt>.
736     *
737     * <p>Like the {@link #toArray()} method, this method acts as bridge between
738     * array-based and collection-based APIs. Further, this method allows
739     * precise control over the runtime type of the output array, and may,
740     * under certain circumstances, be used to save allocation costs.
741     *
742     * <p>Suppose <tt>x</tt> is a deque known to contain only strings.
743     * The following code can be used to dump the deque into a newly
744     * allocated array of <tt>String</tt>:
745     *
746     * <pre>
747     * String[] y = x.toArray(new String[0]);</pre>
748     *
749     * Note that <tt>toArray(new Object[0])</tt> is identical in function to
750     * <tt>toArray()</tt>.
751 dl 1.1 *
752     * @param a the array into which the elements of the deque are to
753 jsr166 1.9 * be stored, if it is big enough; otherwise, a new array of the
754     * same runtime type is allocated for this purpose
755 jsr166 1.10 * @return an array containing all of the elements in this deque
756     * @throws ArrayStoreException if the runtime type of the specified array
757     * is not a supertype of the runtime type of every element in
758     * this deque
759     * @throws NullPointerException if the specified array is null
760 dl 1.1 */
761     public <T> T[] toArray(T[] a) {
762     int size = size();
763     if (a.length < size)
764     a = (T[])java.lang.reflect.Array.newInstance(
765     a.getClass().getComponentType(), size);
766     copyElements(a);
767     if (a.length > size)
768     a[size] = null;
769     return a;
770     }
771    
772     // *** Object methods ***
773    
774     /**
775     * Returns a copy of this deque.
776     *
777     * @return a copy of this deque
778     */
779     public ArrayDeque<E> clone() {
780 dl 1.5 try {
781 dl 1.1 ArrayDeque<E> result = (ArrayDeque<E>) super.clone();
782     // These two lines are currently faster than cloning the array:
783     result.elements = (E[]) new Object[elements.length];
784     System.arraycopy(elements, 0, result.elements, 0, elements.length);
785     return result;
786    
787 dl 1.5 } catch (CloneNotSupportedException e) {
788 dl 1.1 throw new AssertionError();
789     }
790     }
791    
792     /**
793     * Appease the serialization gods.
794     */
795     private static final long serialVersionUID = 2340985798034038923L;
796    
797     /**
798     * Serialize this deque.
799     *
800     * @serialData The current size (<tt>int</tt>) of the deque,
801     * followed by all of its elements (each an object reference) in
802     * first-to-last order.
803     */
804     private void writeObject(ObjectOutputStream s) throws IOException {
805     s.defaultWriteObject();
806    
807     // Write out size
808 dl 1.19 s.writeInt(size());
809 dl 1.1
810     // Write out elements in order.
811     int mask = elements.length - 1;
812 dl 1.19 for (int i = head; i != tail; i = (i + 1) & mask)
813 dl 1.1 s.writeObject(elements[i]);
814     }
815    
816     /**
817     * Deserialize this deque.
818     */
819     private void readObject(ObjectInputStream s)
820     throws IOException, ClassNotFoundException {
821     s.defaultReadObject();
822    
823     // Read in size and allocate array
824     int size = s.readInt();
825     allocateElements(size);
826     head = 0;
827     tail = size;
828    
829     // Read in all elements in the proper order.
830     for (int i = 0; i < size; i++)
831     elements[i] = (E)s.readObject();
832    
833     }
834     }