ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/PriorityQueue.java
(Generate patch)

Comparing jsr166/src/main/java/util/PriorityQueue.java (file contents):
Revision 1.3 by tim, Sun May 18 20:36:01 2003 UTC vs.
Revision 1.21 by dholmes, Tue Aug 5 06:49:51 2003 UTC

# Line 1 | Line 1
1   package java.util;
2  
3 /*
4 * Todo
5 *
6 *   1) Make it serializable.
7 */
8
3   /**
4   * An unbounded priority queue based on a priority heap.  This queue orders
5 < * elements according to the order specified at creation time.  This order is
6 < * specified as for {@link TreeSet} and {@link TreeMap}: Elements are ordered
5 > * elements according to an order specified at construction time, which is
6 > * specified in the same manner as {@link java.util.TreeSet} and
7 > * {@link java.util.TreeMap}: elements are ordered
8   * either according to their <i>natural order</i> (see {@link Comparable}), or
9 < * according to a {@link Comparator}, depending on which constructor is used.
10 < * The {@link #peek}, {@link #poll}, and {@link #remove} methods return the
11 < * minimal element with respect to the specified ordering.  If multiple
12 < * these elements are tied for least value, no guarantees are made as to
13 < * which of elements is returned.
9 > * according to a {@link java.util.Comparator}, depending on which
10 > * constructor is used.
11 > * <p>The <em>head</em> of this queue is the <em>least</em> element with
12 > * respect to the specified ordering.
13 > * If multiple elements are tied for least value, the
14 > * head is one of those elements. A priority queue does not permit
15 > * <tt>null</tt> elements.
16 > *
17 > * <p>The {@link #remove()} and {@link #poll()} methods remove and
18 > * return the head of the queue.
19 > *
20 > * <p>The {@link #element()} and {@link #peek()} methods return, but do
21 > * not delete, the head of the queue.
22   *
23 < * <p>Each priority queue has a <i>capacity</i>.  The capacity is the size of
24 < * the array used to store the elements on the queue.  It is always at least
25 < * as large as the queue size.  As elements are added to a priority list,
26 < * its capacity grows automatically.  The details of the growth policy are not
27 < * specified.
23 > * <p>A priority queue has a <i>capacity</i>.  The capacity is the
24 > * size of the array used internally to store the elements on the
25 > * queue.
26 > * It is always at least as large as the queue size.  As
27 > * elements are added to a priority queue, its capacity grows
28 > * automatically.  The details of the growth policy are not specified.
29   *
30 < *<p>Implementation note: this implementation provides O(log(n)) time for
31 < * the <tt>offer</tt>, <tt>poll</tt>, <tt>remove()</tt> and <tt>add</tt>
32 < * methods; linear time for the <tt>remove(Object)</tt> and
33 < * <tt>contains</tt> methods; and constant time for the <tt>peek</tt>,
34 < * <tt>element</tt>, and <tt>size</tt> methods.
30 > * <p>Implementation note: this implementation provides O(log(n)) time
31 > * for the insertion methods (<tt>offer</tt>, <tt>poll</tt>,
32 > * <tt>remove()</tt> and <tt>add</tt>) methods; linear time for the
33 > * <tt>remove(Object)</tt> and <tt>contains(Object)</tt> methods; and
34 > * constant time for the retrieval methods (<tt>peek</tt>,
35 > * <tt>element</tt>, and <tt>size</tt>).
36   *
37   * <p>This class is a member of the
38   * <a href="{@docRoot}/../guide/collections/index.html">
39   * Java Collections Framework</a>.
40 + * @since 1.5
41 + * @author Josh Bloch
42   */
43   public class PriorityQueue<E> extends AbstractQueue<E>
44 <                              implements Queue<E>
45 < {
44 >    implements Sorted, Queue<E>, java.io.Serializable {
45 >
46      private static final int DEFAULT_INITIAL_CAPACITY = 11;
47  
48      /**
49       * Priority queue represented as a balanced binary heap: the two children
50       * of queue[n] are queue[2*n] and queue[2*n + 1].  The priority queue is
51       * ordered by comparator, or by the elements' natural ordering, if
52 <     * comparator is null:  For each node n in the heap, and each descendant
53 <     * of n, d, n <= d.
52 >     * comparator is null:  For each node n in the heap and each descendant d
53 >     * of n, n <= d.
54       *
55 <     * The element with the lowest value is in queue[1] (assuming the queue is
56 <     * nonempty). A one-based array is used in preference to the traditional
57 <     * zero-based array to simplify parent and child calculations.
55 >     * The element with the lowest value is in queue[1], assuming the queue is
56 >     * nonempty.  (A one-based array is used in preference to the traditional
57 >     * zero-based array to simplify parent and child calculations.)
58       *
59       * queue.length must be >= 2, even if size == 0.
60       */
61 <    private E[] queue;
61 >    private transient Object[] queue;
62  
63      /**
64       * The number of elements in the priority queue.
# Line 62 | Line 69 | public class PriorityQueue<E> extends Ab
69       * The comparator, or null if priority queue uses elements'
70       * natural ordering.
71       */
72 <    private final Comparator<E> comparator;
72 >    private final Comparator<? super E> comparator;
73  
74      /**
75       * The number of times this priority queue has been
76       * <i>structurally modified</i>.  See AbstractList for gory details.
77       */
78 <    private int modCount = 0;
78 >    private transient int modCount = 0;
79  
80      /**
81 <     * Create a new priority queue with the default initial capacity (11)
82 <     * that orders its elements according to their natural ordering.
81 >     * Creates a <tt>PriorityQueue</tt> with the default initial capacity
82 >     * (11) that orders its elements according to their natural
83 >     * ordering (using <tt>Comparable</tt>.)
84       */
85      public PriorityQueue() {
86 <        this(DEFAULT_INITIAL_CAPACITY);
86 >        this(DEFAULT_INITIAL_CAPACITY, null);
87      }
88  
89      /**
90 <     * Create a new priority queue with the specified initial capacity
91 <     * that orders its elements according to their natural ordering.
90 >     * Creates a <tt>PriorityQueue</tt> with the specified initial capacity
91 >     * that orders its elements according to their natural ordering
92 >     * (using <tt>Comparable</tt>.)
93       *
94       * @param initialCapacity the initial capacity for this priority queue.
95       */
# Line 89 | Line 98 | public class PriorityQueue<E> extends Ab
98      }
99  
100      /**
101 <     * Create a new priority queue with the specified initial capacity (11)
101 >     * Creates a <tt>PriorityQueue</tt> with the specified initial capacity
102       * that orders its elements according to the specified comparator.
103       *
104       * @param initialCapacity the initial capacity for this priority queue.
105       * @param comparator the comparator used to order this priority queue.
106 +     * If <tt>null</tt> then the order depends on the elements' natural
107 +     * ordering.
108 +     * @throws IllegalArgumentException if <tt>initialCapacity</tt> is less
109 +     * than 1
110       */
111 <    public PriorityQueue(int initialCapacity, Comparator<E> comparator) {
111 >    public PriorityQueue(int initialCapacity, Comparator<? super E> comparator) {
112          if (initialCapacity < 1)
113 <            initialCapacity = 1;
114 <        queue = new E[initialCapacity + 1];
113 >            throw new IllegalArgumentException();
114 >        this.queue = new Object[initialCapacity + 1];
115          this.comparator = comparator;
116      }
117  
118      /**
119 <     * Create a new priority queue containing the elements in the specified
120 <     * collection.  The priority queue has an initial capacity of 110% of the
121 <     * size of the specified collection. If the specified collection
119 >     * Creates a <tt>PriorityQueue</tt> containing the elements in the
120 >     * specified collection.  
121 >     * The priority queue has an initial capacity of 110% of the
122 >     * size of the specified collection or 1 if the collection is empty.
123 >     * If the specified collection
124       * implements the {@link Sorted} interface, the priority queue will be
125       * sorted according to the same comparator, or according to its elements'
126       * natural order if the collection is sorted according to its elements'
127 <     * natural order.  If the specified collection does not implement the
128 <     * <tt>Sorted</tt> interface, the priority queue is ordered according to
127 >     * natural order.  If the specified collection does not implement
128 >     * <tt>Sorted</tt>, the priority queue is ordered according to
129       * its elements' natural order.
130       *
131 <     * @param initialElements the collection whose elements are to be placed
131 >     * @param c the collection whose elements are to be placed
132       *        into this priority queue.
133       * @throws ClassCastException if elements of the specified collection
134       *         cannot be compared to one another according to the priority
135       *         queue's ordering.
136 <     * @throws NullPointerException if the specified collection or an
137 <     *         element of the specified collection is <tt>null</tt>.
136 >     * @throws NullPointerException if <tt>c</tt> or any element within it
137 >     * is <tt>null</tt>
138       */
139 <    public PriorityQueue(Collection<E> initialElements) {
140 <        int sz = initialElements.size();
139 >    public PriorityQueue(Collection<? extends E> c) {
140 >        int sz = c.size();
141          int initialCapacity = (int)Math.min((sz * 110L) / 100,
142                                              Integer.MAX_VALUE - 1);
143          if (initialCapacity < 1)
144              initialCapacity = 1;
130        queue = new E[initialCapacity + 1];
145  
146 <        /* Commented out to compile with generics compiler
146 >        this.queue = new Object[initialCapacity + 1];
147  
148 <        if (initialElements instanceof Sorted) {
149 <            comparator = ((Sorted)initialElements).comparator();
136 <            for (Iterator<E> i = initialElements.iterator(); i.hasNext(); )
137 <                queue[++size] = i.next();
148 >        if (c instanceof Sorted) {
149 >            comparator = (Comparator<? super E>)((Sorted)c).comparator();
150          } else {
139        */
140        {
151              comparator = null;
142            for (Iterator<E> i = initialElements.iterator(); i.hasNext(); )
143                add(i.next());
152          }
153 +
154 +        for (Iterator<? extends E> i = c.iterator(); i.hasNext(); )
155 +            add(i.next());
156      }
157  
158      // Queue Methods
159  
160      /**
161 <     * Remove and return the minimal element from this priority queue if
151 <     * it contains one or more elements, otherwise <tt>null</tt>.  The term
152 <     * <i>minimal</i> is defined according to this priority queue's order.
161 >     * Add the specified element to this priority queue.
162       *
163 <     * @return the minimal element from this priority queue if it contains
164 <     *         one or more elements, otherwise <tt>null</tt>.
163 >     * @return <tt>true</tt>
164 >     * @throws ClassCastException if the specified element cannot be compared
165 >     * with elements currently in the priority queue according
166 >     * to the priority queue's ordering.
167 >     * @throws NullPointerException if the specified element is <tt>null</tt>.
168       */
169 +    public boolean offer(E o) {
170 +        if (o == null)
171 +            throw new NullPointerException();
172 +        modCount++;
173 +        ++size;
174 +
175 +        // Grow backing store if necessary
176 +        while (size >= queue.length) {
177 +            Object[] newQueue = new Object[2 * queue.length];
178 +            System.arraycopy(queue, 0, newQueue, 0, queue.length);
179 +            queue = newQueue;
180 +        }
181 +
182 +        queue[size] = o;
183 +        fixUp(size);
184 +        return true;
185 +    }
186 +
187      public E poll() {
188          if (size == 0)
189              return null;
190 <        return remove(1);
190 >        return (E) remove(1);
191      }
192  
163    /**
164     * Return, but do not remove, the minimal element from the priority queue,
165     * or <tt>null</tt> if the queue is empty.  The term <i>minimal</i> is
166     * defined according to this priority queue's order.  This method returns
167     * the same object reference that would be returned by by the
168     * <tt>poll</tt> method.  The two methods differ in that this method
169     * does not remove the element from the priority queue.
170     *
171     * @return the minimal element from this priority queue if it contains
172     *         one or more elements, otherwise <tt>null</tt>.
173     */
193      public E peek() {
194 <        return queue[1];
194 >        return (E) queue[1];
195      }
196  
197      // Collection Methods
198  
199 +    // these first two override just to get the throws docs
200 +
201      /**
202 <     * Removes a single instance of the specified element from this priority
182 <     * queue, if it is present.  Returns true if this collection contained the
183 <     * specified element (or equivalently, if this collection changed as a
184 <     * result of the call).
185 <     *
186 <     * @param o element to be removed from this collection, if present.
187 <     * @return <tt>true</tt> if this collection changed as a result of the
188 <     *         call
202 >     * @throws NullPointerException if the specified element is <tt>null</tt>.
203       * @throws ClassCastException if the specified element cannot be compared
204 <     *            with elements currently in the priority queue according
205 <     *            to the priority queue's ordering.
192 <     * @throws NullPointerException if the specified element is null.
204 >     * with elements currently in the priority queue according
205 >     * to the priority queue's ordering.
206       */
207 <    public boolean remove(Object element) {
208 <        if (element == null)
209 <            throw new NullPointerException();
207 >    public boolean add(E o) {
208 >        return super.add(o);
209 >    }
210 >
211 >    /**
212 >     * @throws ClassCastException if any element cannot be compared
213 >     * with elements currently in the priority queue according
214 >     * to the priority queue's ordering.
215 >     * @throws NullPointerException if <tt>c</tt> or any element in <tt>c</tt>
216 >     * is <tt>null</tt>
217 >     */
218 >    public boolean addAll(Collection<? extends E> c) {
219 >        return super.addAll(c);
220 >    }
221 >
222 >    public boolean remove(Object o) {
223 >        if (o == null)
224 >            return false;
225  
226          if (comparator == null) {
227              for (int i = 1; i <= size; i++) {
228 <                if (((Comparable)queue[i]).compareTo(element) == 0) {
228 >                if (((Comparable<E>)queue[i]).compareTo((E)o) == 0) {
229                      remove(i);
230                      return true;
231                  }
232              }
233          } else {
234              for (int i = 1; i <= size; i++) {
235 <                if (comparator.compare(queue[i], (E) element) == 0) {
235 >                if (comparator.compare((E)queue[i], (E)o) == 0) {
236                      remove(i);
237                      return true;
238                  }
# Line 213 | Line 241 | public class PriorityQueue<E> extends Ab
241          return false;
242      }
243  
216    /**
217     * Returns an iterator over the elements in this priority queue.  The
218     * first element returned by this iterator is the same element that
219     * would be returned by a call to <tt>peek</tt>.
220     *
221     * @return an <tt>Iterator</tt> over the elements in this priority queue.
222     */
244      public Iterator<E> iterator() {
245          return new Itr();
246      }
# Line 229 | Line 250 | public class PriorityQueue<E> extends Ab
250           * Index (into queue array) of element to be returned by
251           * subsequent call to next.
252           */
253 <        int cursor = 1;
253 >        private int cursor = 1;
254  
255          /**
256           * Index of element returned by most recent call to next or
257           * previous.  Reset to 0 if this element is deleted by a call
258           * to remove.
259           */
260 <        int lastRet = 0;
260 >        private int lastRet = 0;
261  
262          /**
263           * The modCount value that the iterator believes that the backing
264           * List should have.  If this expectation is violated, the iterator
265           * has detected concurrent modification.
266           */
267 <        int expectedModCount = modCount;
267 >        private int expectedModCount = modCount;
268  
269          public boolean hasNext() {
270              return cursor <= size;
# Line 253 | Line 274 | public class PriorityQueue<E> extends Ab
274              checkForComodification();
275              if (cursor > size)
276                  throw new NoSuchElementException();
277 <            E result = queue[cursor];
277 >            E result = (E) queue[cursor];
278              lastRet = cursor++;
279              return result;
280          }
# Line 286 | Line 307 | public class PriorityQueue<E> extends Ab
307      }
308  
309      /**
289     * Add the specified element to this priority queue.
290     *
291     * @param element the element to add.
292     * @return true
293     * @throws ClassCastException if the specified element cannot be compared
294     *            with elements currently in the priority queue according
295     *            to the priority queue's ordering.
296     * @throws NullPointerException if the specified element is null.
297     */
298    public boolean offer(E element) {
299        if (element == null)
300            throw new NullPointerException();
301        modCount++;
302
303        // Grow backing store if necessary
304        if (++size == queue.length) {
305            E[] newQueue = new E[2 * queue.length];
306            System.arraycopy(queue, 0, newQueue, 0, size);
307            queue = newQueue;
308        }
309
310        queue[size] = element;
311        fixUp(size);
312        return true;
313    }
314
315    /**
310       * Remove all elements from the priority queue.
311       */
312      public void clear() {
# Line 336 | Line 330 | public class PriorityQueue<E> extends Ab
330          assert i <= size;
331          modCount++;
332  
333 <        E result = queue[i];
333 >        E result = (E) queue[i];
334          queue[i] = queue[size];
335          queue[size--] = null;  // Drop extra ref to prevent memory leak
336          if (i <= size)
# Line 357 | Line 351 | public class PriorityQueue<E> extends Ab
351          if (comparator == null) {
352              while (k > 1) {
353                  int j = k >> 1;
354 <                if (((Comparable)queue[j]).compareTo(queue[k]) <= 0)
354 >                if (((Comparable<E>)queue[j]).compareTo((E)queue[k]) <= 0)
355                      break;
356 <                E tmp = queue[j];  queue[j] = queue[k]; queue[k] = tmp;
356 >                Object tmp = queue[j];  queue[j] = queue[k]; queue[k] = tmp;
357                  k = j;
358              }
359          } else {
360              while (k > 1) {
361                  int j = k >> 1;
362 <                if (comparator.compare(queue[j], queue[k]) <= 0)
362 >                if (comparator.compare((E)queue[j], (E)queue[k]) <= 0)
363                      break;
364 <                E tmp = queue[j];  queue[j] = queue[k]; queue[k] = tmp;
364 >                Object tmp = queue[j];  queue[j] = queue[k]; queue[k] = tmp;
365                  k = j;
366              }
367          }
# Line 386 | Line 380 | public class PriorityQueue<E> extends Ab
380          int j;
381          if (comparator == null) {
382              while ((j = k << 1) <= size) {
383 <                if (j<size && ((Comparable)queue[j]).compareTo(queue[j+1]) > 0)
383 >                if (j<size && ((Comparable<E>)queue[j]).compareTo((E)queue[j+1]) > 0)
384                      j++; // j indexes smallest kid
385 <                if (((Comparable)queue[k]).compareTo(queue[j]) <= 0)
385 >                if (((Comparable<E>)queue[k]).compareTo((E)queue[j]) <= 0)
386                      break;
387 <                E tmp = queue[j];  queue[j] = queue[k]; queue[k] = tmp;
387 >                Object tmp = queue[j];  queue[j] = queue[k]; queue[k] = tmp;
388                  k = j;
389              }
390          } else {
391              while ((j = k << 1) <= size) {
392 <                if (j < size && comparator.compare(queue[j], queue[j+1]) > 0)
392 >                if (j < size && comparator.compare((E)queue[j], (E)queue[j+1]) > 0)
393                      j++; // j indexes smallest kid
394 <                if (comparator.compare(queue[k], queue[j]) <= 0)
394 >                if (comparator.compare((E)queue[k], (E)queue[j]) <= 0)
395                      break;
396 <                E tmp = queue[j];  queue[j] = queue[k]; queue[k] = tmp;
396 >                Object tmp = queue[j];  queue[j] = queue[k]; queue[k] = tmp;
397                  k = j;
398              }
399          }
400      }
401  
402 +    public Comparator<? super E> comparator() {
403 +        return comparator;
404 +    }
405 +
406      /**
407 <     * Returns the comparator associated with this priority queue, or
408 <     * <tt>null</tt> if it uses its elements' natural ordering.
407 >     * Save the state of the instance to a stream (that
408 >     * is, serialize it).
409       *
410 <     * @return the comparator associated with this priority queue, or
411 <     *         <tt>null</tt> if it uses its elements' natural ordering.
410 >     * @serialData The length of the array backing the instance is
411 >     * emitted (int), followed by all of its elements (each an
412 >     * <tt>Object</tt>) in the proper order.
413 >     * @param s the stream
414       */
415 <    Comparator<E> comparator() {
416 <        return comparator;
415 >    private synchronized void writeObject(java.io.ObjectOutputStream s)
416 >        throws java.io.IOException{
417 >        // Write out element count, and any hidden stuff
418 >        s.defaultWriteObject();
419 >
420 >        // Write out array length
421 >        s.writeInt(queue.length);
422 >
423 >        // Write out all elements in the proper order.
424 >        for (int i=0; i<size; i++)
425 >            s.writeObject(queue[i]);
426      }
427 +
428 +    /**
429 +     * Reconstitute the <tt>ArrayList</tt> instance from a stream (that is,
430 +     * deserialize it).
431 +     * @param s the stream
432 +     */
433 +    private synchronized void readObject(java.io.ObjectInputStream s)
434 +        throws java.io.IOException, ClassNotFoundException {
435 +        // Read in size, and any hidden stuff
436 +        s.defaultReadObject();
437 +
438 +        // Read in array length and allocate array
439 +        int arrayLength = s.readInt();
440 +        queue = new Object[arrayLength];
441 +
442 +        // Read in all elements in the proper order.
443 +        for (int i=0; i<size; i++)
444 +            queue[i] = s.readObject();
445 +    }
446 +
447   }
448 +

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines