jdk/src/share/classes/java/util/PriorityQueue.java
author martin
Sun, 09 May 2010 00:59:30 -0700
changeset 5466 f130bb07764b
parent 2 90ce3da70b43
child 5467 0cfa1c70b5ab
permissions -rw-r--r--
6933217: Huge arrays handled poorly in core libraries Summary: Write overflow-conscious array resizing code Reviewed-by: chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2003-2006 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.util;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * An unbounded priority {@linkplain Queue queue} based on a priority heap.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * The elements of the priority queue are ordered according to their
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * {@linkplain Comparable natural ordering}, or by a {@link Comparator}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * provided at queue construction time, depending on which constructor is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * used.  A priority queue does not permit {@code null} elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * A priority queue relying on natural ordering also does not permit
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * insertion of non-comparable objects (doing so may result in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * {@code ClassCastException}).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * <p>The <em>head</em> of this queue is the <em>least</em> element
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * with respect to the specified ordering.  If multiple elements are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * tied for least value, the head is one of those elements -- ties are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * broken arbitrarily.  The queue retrieval operations {@code poll},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * {@code remove}, {@code peek}, and {@code element} access the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * element at the head of the queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * <p>A priority queue is unbounded, but has an internal
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * <i>capacity</i> governing the size of an array used to store the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * elements on the queue.  It is always at least as large as the queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * size.  As elements are added to a priority queue, its capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * grows automatically.  The details of the growth policy are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * specified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * <p>This class and its iterator implement all of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * <em>optional</em> methods of the {@link Collection} and {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * Iterator} interfaces.  The Iterator provided in method {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * #iterator()} is <em>not</em> guaranteed to traverse the elements of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * the priority queue in any particular order. If you need ordered
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * traversal, consider using {@code Arrays.sort(pq.toArray())}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * <p> <strong>Note that this implementation is not synchronized.</strong>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * Multiple threads should not access a {@code PriorityQueue}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * instance concurrently if any of the threads modifies the queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * Instead, use the thread-safe {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * java.util.concurrent.PriorityBlockingQueue} class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * <p>Implementation note: this implementation provides
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * O(log(n)) time for the enqueing and dequeing methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * ({@code offer}, {@code poll}, {@code remove()} and {@code add});
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * linear time for the {@code remove(Object)} and {@code contains(Object)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * methods; and constant time for the retrieval methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * ({@code peek}, {@code element}, and {@code size}).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * <p>This class is a member of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * Java Collections Framework</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * @author Josh Bloch, Doug Lea
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * @param <E> the type of elements held in this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
public class PriorityQueue<E> extends AbstractQueue<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    implements java.io.Serializable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    private static final long serialVersionUID = -7720805057305804111L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    private static final int DEFAULT_INITIAL_CAPACITY = 11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * Priority queue represented as a balanced binary heap: the two
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * children of queue[n] are queue[2*n+1] and queue[2*(n+1)].  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * priority queue is ordered by comparator, or by the elements'
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * natural ordering, if comparator is null: For each node n in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * heap and each descendant d of n, n <= d.  The element with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * lowest value is in queue[0], assuming the queue is nonempty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    private transient Object[] queue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * The number of elements in the priority queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    private int size = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * The comparator, or null if priority queue uses elements'
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * natural ordering.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    private final Comparator<? super E> comparator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * The number of times this priority queue has been
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * <i>structurally modified</i>.  See AbstractList for gory details.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    private transient int modCount = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * Creates a {@code PriorityQueue} with the default initial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * capacity (11) that orders its elements according to their
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * {@linkplain Comparable natural ordering}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    public PriorityQueue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        this(DEFAULT_INITIAL_CAPACITY, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * Creates a {@code PriorityQueue} with the specified initial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * capacity that orders its elements according to their
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * {@linkplain Comparable natural ordering}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * @param initialCapacity the initial capacity for this priority queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * @throws IllegalArgumentException if {@code initialCapacity} is less
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     *         than 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    public PriorityQueue(int initialCapacity) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        this(initialCapacity, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * Creates a {@code PriorityQueue} with the specified initial capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * that orders its elements according to the specified comparator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * @param  initialCapacity the initial capacity for this priority queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * @param  comparator the comparator that will be used to order this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     *         priority queue.  If {@code null}, the {@linkplain Comparable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     *         natural ordering} of the elements will be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * @throws IllegalArgumentException if {@code initialCapacity} is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     *         less than 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    public PriorityQueue(int initialCapacity,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
                         Comparator<? super E> comparator) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        // Note: This restriction of at least one is not actually needed,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        // but continues for 1.5 compatibility
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        if (initialCapacity < 1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
            throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        this.queue = new Object[initialCapacity];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        this.comparator = comparator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * Creates a {@code PriorityQueue} containing the elements in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * specified collection.  If the specified collection is an instance of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * a {@link SortedSet} or is another {@code PriorityQueue}, this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * priority queue will be ordered according to the same ordering.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * Otherwise, this priority queue will be ordered according to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * {@linkplain Comparable natural ordering} of its elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * @param  c the collection whose elements are to be placed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     *         into this priority queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * @throws ClassCastException if elements of the specified collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     *         cannot be compared to one another according to the priority
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     *         queue's ordering
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * @throws NullPointerException if the specified collection or any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     *         of its elements are null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    public PriorityQueue(Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        initFromCollection(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        if (c instanceof SortedSet)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            comparator = (Comparator<? super E>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                ((SortedSet<? extends E>)c).comparator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        else if (c instanceof PriorityQueue)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            comparator = (Comparator<? super E>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                ((PriorityQueue<? extends E>)c).comparator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            comparator = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
            heapify();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * Creates a {@code PriorityQueue} containing the elements in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * specified priority queue.  This priority queue will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * ordered according to the same ordering as the given priority
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * @param  c the priority queue whose elements are to be placed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     *         into this priority queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * @throws ClassCastException if elements of {@code c} cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     *         compared to one another according to {@code c}'s
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     *         ordering
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * @throws NullPointerException if the specified priority queue or any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     *         of its elements are null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    public PriorityQueue(PriorityQueue<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        comparator = (Comparator<? super E>)c.comparator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        initFromCollection(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * Creates a {@code PriorityQueue} containing the elements in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * specified sorted set.   This priority queue will be ordered
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * according to the same ordering as the given sorted set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * @param  c the sorted set whose elements are to be placed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     *         into this priority queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * @throws ClassCastException if elements of the specified sorted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     *         set cannot be compared to one another according to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     *         sorted set's ordering
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * @throws NullPointerException if the specified sorted set or any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     *         of its elements are null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
    public PriorityQueue(SortedSet<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        comparator = (Comparator<? super E>)c.comparator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        initFromCollection(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * Initializes queue array with elements from the given Collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * @param c the collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    private void initFromCollection(Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        Object[] a = c.toArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        // If c.toArray incorrectly doesn't return Object[], copy it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        if (a.getClass() != Object[].class)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            a = Arrays.copyOf(a, a.length, Object[].class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        queue = a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        size = a.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    /**
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   239
     * The maximum size of array to allocate.
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   240
     * Some VMs reserve some header words in an array.
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   241
     * Attempts to allocate larger arrays may result in
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   242
     * OutOfMemoryError: Requested array size exceeds VM limit
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   243
     */
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   244
    private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   245
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   246
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * Increases the capacity of the array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * @param minCapacity the desired minimum capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    private void grow(int minCapacity) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
        int oldCapacity = queue.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        // Double size if small; else grow by 50%
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   254
        int newCapacity = oldCapacity + ((oldCapacity < 64) ?
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   255
                                         (oldCapacity + 2) :
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   256
                                         (oldCapacity >> 1));
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   257
        // overflow-conscious code
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   258
        if (newCapacity - MAX_ARRAY_SIZE > 0)
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   259
            newCapacity = hugeCapacity(minCapacity);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        queue = Arrays.copyOf(queue, newCapacity);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   263
    private static int hugeCapacity(int minCapacity) {
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   264
        if (minCapacity < 0) // overflow
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   265
            throw new OutOfMemoryError();
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   266
        return (minCapacity > MAX_ARRAY_SIZE) ?
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   267
            Integer.MAX_VALUE :
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   268
            MAX_ARRAY_SIZE;
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   269
    }
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2
diff changeset
   270
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * Inserts the specified element into this priority queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * @return {@code true} (as specified by {@link Collection#add})
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * @throws ClassCastException if the specified element cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     *         compared with elements currently in this priority queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     *         according to the priority queue's ordering
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * @throws NullPointerException if the specified element is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    public boolean add(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        return offer(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * Inserts the specified element into this priority queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * @return {@code true} (as specified by {@link Queue#offer})
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * @throws ClassCastException if the specified element cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     *         compared with elements currently in this priority queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     *         according to the priority queue's ordering
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * @throws NullPointerException if the specified element is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
    public boolean offer(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
        if (e == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        int i = size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        if (i >= queue.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
            grow(i + 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        size = i + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        if (i == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            queue[0] = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
            siftUp(i, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
    public E peek() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        if (size == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        return (E) queue[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    private int indexOf(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        if (o != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
            for (int i = 0; i < size; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
                if (o.equals(queue[i]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
                    return i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * Removes a single instance of the specified element from this queue,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * if it is present.  More formally, removes an element {@code e} such
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * that {@code o.equals(e)}, if this queue contains one or more such
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * elements.  Returns {@code true} if and only if this queue contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * the specified element (or equivalently, if this queue changed as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * result of the call).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * @param o element to be removed from this queue, if present
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * @return {@code true} if this queue changed as a result of the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    public boolean remove(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        int i = indexOf(o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        if (i == -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
            removeAt(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * Version of remove using reference equality, not equals.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * Needed by iterator.remove.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     * @param o element to be removed from this queue, if present
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * @return {@code true} if removed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
    boolean removeEq(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
        for (int i = 0; i < size; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
            if (o == queue[i]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
                removeAt(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * Returns {@code true} if this queue contains the specified element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * More formally, returns {@code true} if and only if this queue contains
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * at least one element {@code e} such that {@code o.equals(e)}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     * @param o object to be checked for containment in this queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     * @return {@code true} if this queue contains the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    public boolean contains(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        return indexOf(o) != -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * Returns an array containing all of the elements in this queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * The elements are in no particular order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * <p>The returned array will be "safe" in that no references to it are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * maintained by this queue.  (In other words, this method must allocate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * a new array).  The caller is thus free to modify the returned array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     * <p>This method acts as bridge between array-based and collection-based
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * APIs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     * @return an array containing all of the elements in this queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    public Object[] toArray() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        return Arrays.copyOf(queue, size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     * Returns an array containing all of the elements in this queue; the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * runtime type of the returned array is that of the specified array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * The returned array elements are in no particular order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * If the queue fits in the specified array, it is returned therein.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * Otherwise, a new array is allocated with the runtime type of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * specified array and the size of this queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     * <p>If the queue fits in the specified array with room to spare
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * (i.e., the array has more elements than the queue), the element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * the array immediately following the end of the collection is set to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * {@code null}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     * <p>Like the {@link #toArray()} method, this method acts as bridge between
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * array-based and collection-based APIs.  Further, this method allows
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * precise control over the runtime type of the output array, and may,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * under certain circumstances, be used to save allocation costs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * <p>Suppose <tt>x</tt> is a queue known to contain only strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     * The following code can be used to dump the queue into a newly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     * allocated array of <tt>String</tt>:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     *     String[] y = x.toArray(new String[0]);</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
     * Note that <tt>toArray(new Object[0])</tt> is identical in function to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     * <tt>toArray()</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * @param a the array into which the elements of the queue are to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     *          be stored, if it is big enough; otherwise, a new array of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     *          same runtime type is allocated for this purpose.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * @return an array containing all of the elements in this queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     * @throws ArrayStoreException if the runtime type of the specified array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     *         is not a supertype of the runtime type of every element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     *         this queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * @throws NullPointerException if the specified array is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
    public <T> T[] toArray(T[] a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
        if (a.length < size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
            // Make a new array of a's runtime type, but my contents:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
            return (T[]) Arrays.copyOf(queue, size, a.getClass());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
        System.arraycopy(queue, 0, a, 0, size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
        if (a.length > size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
            a[size] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
        return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     * Returns an iterator over the elements in this queue. The iterator
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     * does not return the elements in any particular order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * @return an iterator over the elements in this queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    public Iterator<E> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
        return new Itr();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
    private final class Itr implements Iterator<E> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
         * Index (into queue array) of element to be returned by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
         * subsequent call to next.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
        private int cursor = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
         * Index of element returned by most recent call to next,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
         * unless that element came from the forgetMeNot list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
         * Set to -1 if element is deleted by a call to remove.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        private int lastRet = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
         * A queue of elements that were moved from the unvisited portion of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
         * the heap into the visited portion as a result of "unlucky" element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
         * removals during the iteration.  (Unlucky element removals are those
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
         * that require a siftup instead of a siftdown.)  We must visit all of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
         * the elements in this list to complete the iteration.  We do this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
         * after we've completed the "normal" iteration.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
         * We expect that most iterations, even those involving removals,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
         * will not need to store elements in this field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        private ArrayDeque<E> forgetMeNot = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
         * Element returned by the most recent call to next iff that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
         * element was drawn from the forgetMeNot list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
        private E lastRetElt = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
         * The modCount value that the iterator believes that the backing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
         * Queue should have.  If this expectation is violated, the iterator
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
         * has detected concurrent modification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        private int expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        public boolean hasNext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
            return cursor < size ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
                (forgetMeNot != null && !forgetMeNot.isEmpty());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
        public E next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
            if (expectedModCount != modCount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
            if (cursor < size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
                return (E) queue[lastRet = cursor++];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
            if (forgetMeNot != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
                lastRet = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
                lastRetElt = forgetMeNot.poll();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
                if (lastRetElt != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
                    return lastRetElt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
            throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
        public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
            if (expectedModCount != modCount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
            if (lastRet != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
                E moved = PriorityQueue.this.removeAt(lastRet);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
                lastRet = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
                if (moved == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
                    cursor--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
                else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
                    if (forgetMeNot == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
                        forgetMeNot = new ArrayDeque<E>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
                    forgetMeNot.add(moved);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
            } else if (lastRetElt != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
                PriorityQueue.this.removeEq(lastRetElt);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
                lastRetElt = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
                throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
            expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
    public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
        return size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * Removes all of the elements from this priority queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     * The queue will be empty after this call returns.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
    public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
        for (int i = 0; i < size; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
            queue[i] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        size = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
    public E poll() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        if (size == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        int s = --size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
        E result = (E) queue[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
        E x = (E) queue[s];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
        queue[s] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        if (s != 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
            siftDown(0, x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
     * Removes the ith element from queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     * Normally this method leaves the elements at up to i-1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     * inclusive, untouched.  Under these circumstances, it returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     * null.  Occasionally, in order to maintain the heap invariant,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     * it must swap a later element of the list with one earlier than
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     * i.  Under these circumstances, this method returns the element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     * that was previously at the end of the list and is now at some
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     * position before i. This fact is used by iterator.remove so as to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     * avoid missing traversing elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
    private E removeAt(int i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
        assert i >= 0 && i < size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
        int s = --size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
        if (s == i) // removed last element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
            queue[i] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
            E moved = (E) queue[s];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
            queue[s] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
            siftDown(i, moved);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
            if (queue[i] == moved) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
                siftUp(i, moved);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
                if (queue[i] != moved)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
                    return moved;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     * Inserts item x at position k, maintaining heap invariant by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     * promoting x up the tree until it is greater than or equal to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     * its parent, or is the root.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     * To simplify and speed up coercions and comparisons. the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     * Comparable and Comparator versions are separated into different
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
     * methods that are otherwise identical. (Similarly for siftDown.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
     * @param k the position to fill
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
     * @param x the item to insert
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
    private void siftUp(int k, E x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
        if (comparator != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
            siftUpUsingComparator(k, x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
            siftUpComparable(k, x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
    private void siftUpComparable(int k, E x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
        Comparable<? super E> key = (Comparable<? super E>) x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
        while (k > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
            int parent = (k - 1) >>> 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
            Object e = queue[parent];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
            if (key.compareTo((E) e) >= 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
            queue[k] = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
            k = parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
        queue[k] = key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
    private void siftUpUsingComparator(int k, E x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
        while (k > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
            int parent = (k - 1) >>> 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
            Object e = queue[parent];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
            if (comparator.compare(x, (E) e) >= 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
            queue[k] = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
            k = parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
        queue[k] = x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     * Inserts item x at position k, maintaining heap invariant by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     * demoting x down the tree repeatedly until it is less than or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
     * equal to its children or is a leaf.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
     * @param k the position to fill
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
     * @param x the item to insert
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
    private void siftDown(int k, E x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
        if (comparator != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
            siftDownUsingComparator(k, x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
            siftDownComparable(k, x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
    private void siftDownComparable(int k, E x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
        Comparable<? super E> key = (Comparable<? super E>)x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
        int half = size >>> 1;        // loop while a non-leaf
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
        while (k < half) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
            int child = (k << 1) + 1; // assume left child is least
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
            Object c = queue[child];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
            int right = child + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
            if (right < size &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
                ((Comparable<? super E>) c).compareTo((E) queue[right]) > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
                c = queue[child = right];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
            if (key.compareTo((E) c) <= 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
            queue[k] = c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
            k = child;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
        queue[k] = key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
    private void siftDownUsingComparator(int k, E x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
        int half = size >>> 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
        while (k < half) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
            int child = (k << 1) + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
            Object c = queue[child];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
            int right = child + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
            if (right < size &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
                comparator.compare((E) c, (E) queue[right]) > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
                c = queue[child = right];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
            if (comparator.compare(x, (E) c) <= 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
            queue[k] = c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
            k = child;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
        queue[k] = x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     * Establishes the heap invariant (described above) in the entire tree,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     * assuming nothing about the order of the elements prior to the call.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
    private void heapify() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
        for (int i = (size >>> 1) - 1; i >= 0; i--)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
            siftDown(i, (E) queue[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     * Returns the comparator used to order the elements in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     * queue, or {@code null} if this queue is sorted according to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     * the {@linkplain Comparable natural ordering} of its elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     * @return the comparator used to order this queue, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     *         {@code null} if this queue is sorted according to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     *         natural ordering of its elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
    public Comparator<? super E> comparator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
        return comparator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     * Saves the state of the instance to a stream (that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     * is, serializes it).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     * @serialData The length of the array backing the instance is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     *             emitted (int), followed by all of its elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     *             (each an {@code Object}) in the proper order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     * @param s the stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
    private void writeObject(java.io.ObjectOutputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
        throws java.io.IOException{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
        // Write out element count, and any hidden stuff
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
        s.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
        // Write out array length, for compatibility with 1.5 version
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
        s.writeInt(Math.max(2, size + 1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
        // Write out all elements in the "proper order".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
        for (int i = 0; i < size; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
            s.writeObject(queue[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
     * Reconstitutes the {@code PriorityQueue} instance from a stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
     * (that is, deserializes it).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * @param s the stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
    private void readObject(java.io.ObjectInputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
        throws java.io.IOException, ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
        // Read in size, and any hidden stuff
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
        s.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        // Read in (and discard) array length
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
        s.readInt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
        queue = new Object[size];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
        // Read in all elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
        for (int i = 0; i < size; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
            queue[i] = s.readObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
        // Elements are guaranteed to be in "proper order", but the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
        // spec has never explained what that might be.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
        heapify();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
}