ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/ArrayDeque.java
Revision: 1.32
Committed: Wed Jun 8 00:21:52 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.31: +5 -5 lines
Log Message:
consistent style for serialization methods

File Contents

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