public class DoubleHeapIndirectPriorityQueue extends DoubleHeapSemiIndirectPriorityQueue
Instances of this class use an additional inversion array, of the same length of the reference array,
to keep track of the heap position containing a given element of the reference array. The priority queue is
represented using a heap. The heap is enlarged as needed, but it is never
shrunk. Use the DoubleHeapSemiIndirectPriorityQueue.trim() method to reduce its size, if necessary.
| Modifier and Type | Field and Description |
|---|---|
protected int[] |
inv
The inversion array.
|
c, heap, refArray, size| Constructor and Description |
|---|
DoubleHeapIndirectPriorityQueue(double[] refArray)
Creates a new empty queue with capacity equal to the length of the reference array and using the natural order.
|
DoubleHeapIndirectPriorityQueue(double[] refArray,
it.unimi.dsi.fastutil.doubles.DoubleComparator c)
Creates a new empty queue with capacity equal to the length of the reference array and a given comparator.
|
DoubleHeapIndirectPriorityQueue(double[] refArray,
int capacity)
Creates a new empty queue with a given capacity and using the natural order.
|
DoubleHeapIndirectPriorityQueue(double[] refArray,
int[] a)
Wraps a given array in a queue using the natural order.
|
DoubleHeapIndirectPriorityQueue(double[] refArray,
int[] a,
it.unimi.dsi.fastutil.doubles.DoubleComparator c)
Wraps a given array in a queue using a given comparator.
|
DoubleHeapIndirectPriorityQueue(double[] refArray,
int[] a,
int size)
Wraps a given array in a queue using the natural order.
|
DoubleHeapIndirectPriorityQueue(double[] refArray,
int[] a,
int size,
it.unimi.dsi.fastutil.doubles.DoubleComparator c)
Wraps a given array in a queue using a given comparator.
|
DoubleHeapIndirectPriorityQueue(double[] refArray,
int capacity,
it.unimi.dsi.fastutil.doubles.DoubleComparator c)
Creates a new empty queue with a given capacity and comparator.
|
| Modifier and Type | Method and Description |
|---|---|
void |
allChanged()
Rebuilds this queue in a bottom-up fashion (in linear time).
|
void |
changed() |
void |
changed(int index) |
void |
clear() |
boolean |
contains(int index) |
int |
dequeue() |
void |
enqueue(int x) |
boolean |
remove(int index) |
comparator, ensureElement, first, front, size, toString, trimpublic DoubleHeapIndirectPriorityQueue(double[] refArray,
int capacity,
it.unimi.dsi.fastutil.doubles.DoubleComparator c)
refArray - the reference array.capacity - the initial capacity of this queue.c - the comparator used in this queue, or null for the natural order.public DoubleHeapIndirectPriorityQueue(double[] refArray,
int capacity)
refArray - the reference array.capacity - the initial capacity of this queue.public DoubleHeapIndirectPriorityQueue(double[] refArray,
it.unimi.dsi.fastutil.doubles.DoubleComparator c)
refArray - the reference array.c - the comparator used in this queue, or null for the natural order.public DoubleHeapIndirectPriorityQueue(double[] refArray)
refArray - the reference array.public DoubleHeapIndirectPriorityQueue(double[] refArray,
int[] a,
int size,
it.unimi.dsi.fastutil.doubles.DoubleComparator c)
The queue returned by this method will be backed by the given array.
The first size element of the array will be rearranged so to form a heap (this is
more efficient than enqueing the elements of a one by one).
refArray - the reference array.a - an array of indices into refArray.size - the number of elements to be included in the queue.c - the comparator used in this queue, or null for the natural order.public DoubleHeapIndirectPriorityQueue(double[] refArray,
int[] a,
it.unimi.dsi.fastutil.doubles.DoubleComparator c)
The queue returned by this method will be backed by the given array.
The elements of the array will be rearranged so to form a heap (this is
more efficient than enqueing the elements of a one by one).
refArray - the reference array.a - an array of indices into refArray.c - the comparator used in this queue, or null for the natural order.public DoubleHeapIndirectPriorityQueue(double[] refArray,
int[] a,
int size)
The queue returned by this method will be backed by the given array.
The first size element of the array will be rearranged so to form a heap (this is
more efficient than enqueing the elements of a one by one).
refArray - the reference array.a - an array of indices into refArray.size - the number of elements to be included in the queue.public DoubleHeapIndirectPriorityQueue(double[] refArray,
int[] a)
The queue returned by this method will be backed by the given array.
The elements of the array will be rearranged so to form a heap (this is
more efficient than enqueing the elements of a one by one).
refArray - the reference array.a - an array of indices into refArray.public void enqueue(int x)
enqueue in interface it.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.Double>enqueue in class DoubleHeapSemiIndirectPriorityQueuepublic boolean contains(int index)
public int dequeue()
dequeue in interface it.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.Double>dequeue in class DoubleHeapSemiIndirectPriorityQueuepublic void changed()
DoubleHeapSemiIndirectPriorityQueueThe caller must guarantee that when this method is called the index of the first element appears just once in the queue. Failure to do so will bring the queue in an inconsistent state, and will cause unpredictable behaviour.
changed in interface it.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.Double>changed in class DoubleHeapSemiIndirectPriorityQueuepublic void changed(int index)
public void allChanged()
allChanged in interface it.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.Double>allChanged in class DoubleHeapSemiIndirectPriorityQueuepublic boolean remove(int index)
public void clear()
clear in interface it.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.Double>clear in class DoubleHeapSemiIndirectPriorityQueue