--- jsr166/src/main/java/util/PriorityQueue.java 2003/08/25 19:27:54 1.31 +++ jsr166/src/main/java/util/PriorityQueue.java 2003/08/27 10:27:07 1.35 @@ -37,7 +37,7 @@ * Multiple threads should not access a PriorityQueue * instance concurrently if any of the threads modifies the list * structurally. Instead, use the thread-safe {@link - * java.util.concurrent.BlockingPriorityQueue} class. + * java.util.concurrent.PriorityBlockingQueue} class. * * *

Implementation note: this implementation provides O(log(n)) time @@ -392,6 +392,7 @@ public class PriorityQueue extends Ab } private class Itr implements Iterator { + /** * Index (into queue array) of element to be returned by * subsequent call to next. @@ -412,15 +413,20 @@ public class PriorityQueue extends Ab */ private int expectedModCount = modCount; + // Workarounds until version that better handles remove() installed. + // These are used to copy-on-write the array upon first remove + private Object[] q = queue; + private int qsize = size; + public boolean hasNext() { - return cursor <= size; + return cursor <= qsize; } public E next() { checkForComodification(); - if (cursor > size) + if (cursor > qsize) throw new NoSuchElementException(); - E result = (E) queue[cursor]; + E result = (E) q[cursor]; lastRet = cursor++; return result; } @@ -430,9 +436,13 @@ public class PriorityQueue extends Ab throw new IllegalStateException(); checkForComodification(); - PriorityQueue.this.remove(lastRet); - if (lastRet < cursor) - cursor--; + // Copy on first remove + if (q == queue) { + q = new Object[queue.length]; + System.arraycopy(queue, 0, q, 0, queue.length); + } + PriorityQueue.this.remove(q[lastRet]); + lastRet = 0; expectedModCount = modCount; } @@ -464,8 +474,6 @@ public class PriorityQueue extends Ab * Removes and returns the ith element from queue. Recall * that queue is one-based, so 1 <= i <= size. * - * XXX: Could further special-case i==size, but is it worth it? - * XXX: Could special-case i==0, but is it worth it? */ private E remove(int i) { assert i <= size; @@ -474,8 +482,11 @@ public class PriorityQueue extends Ab E result = (E) queue[i]; queue[i] = queue[size]; queue[size--] = null; // Drop extra ref to prevent memory leak - if (i <= size) + if (i <= size) { fixDown(i); + fixUp(i); + } + return result; } @@ -499,7 +510,7 @@ public class PriorityQueue extends Ab } } else { while (k > 1) { - int j = k >> 1; + int j = k >>> 1; if (comparator.compare((E)queue[j], (E)queue[k]) <= 0) break; Object tmp = queue[j]; queue[j] = queue[k]; queue[k] = tmp; @@ -520,17 +531,20 @@ public class PriorityQueue extends Ab private void fixDown(int k) { int j; if (comparator == null) { - while ((j = k << 1) <= size) { - if (j)queue[j]).compareTo((E)queue[j+1]) > 0) + while ((j = k << 1) <= size && (j > 0)) { + if (j)queue[j]).compareTo((E)queue[j+1]) > 0) j++; // j indexes smallest kid + if (((Comparable)queue[k]).compareTo((E)queue[j]) <= 0) break; Object tmp = queue[j]; queue[j] = queue[k]; queue[k] = tmp; k = j; } } else { - while ((j = k << 1) <= size) { - if (j < size && comparator.compare((E)queue[j], (E)queue[j+1]) > 0) + while ((j = k << 1) <= size && (j > 0)) { + if (j 0) j++; // j indexes smallest kid if (comparator.compare((E)queue[k], (E)queue[j]) <= 0) break; @@ -538,6 +552,7 @@ public class PriorityQueue extends Ab k = j; } } + }