public class LongHeapSemiIndirectPriorityQueue extends java.lang.Object implements LongIndirectPriorityQueue
Instances of this class use as reference list a reference array,
which must be provided to each constructor. The priority queue is
represented using a heap. The heap is enlarged as needed, but it is never
shrunk. Use the trim() method to reduce its size, if necessary.
| Modifier and Type | Field and Description |
|---|---|
protected it.unimi.dsi.fastutil.longs.LongComparator |
c
The type-specific comparator used in this queue.
|
protected int[] |
heap
The semi-indirect heap.
|
protected long[] |
refArray
The reference array.
|
protected int |
size
The number of elements in this queue.
|
| Constructor and Description |
|---|
LongHeapSemiIndirectPriorityQueue(long[] refArray)
Creates a new empty queue with capacity equal to the length of the reference array and using the natural order.
|
LongHeapSemiIndirectPriorityQueue(long[] refArray,
int capacity)
Creates a new empty queue with given capacity and using the natural order.
|
LongHeapSemiIndirectPriorityQueue(long[] refArray,
int[] a)
Wraps a given array in a queue using the natural order.
|
LongHeapSemiIndirectPriorityQueue(long[] refArray,
int[] a,
int size)
Wraps a given array in a queue using the natural order.
|
LongHeapSemiIndirectPriorityQueue(long[] refArray,
int[] a,
int size,
it.unimi.dsi.fastutil.longs.LongComparator c)
Wraps a given array in a queue using a given comparator.
|
LongHeapSemiIndirectPriorityQueue(long[] refArray,
int[] a,
it.unimi.dsi.fastutil.longs.LongComparator c)
Wraps a given array in a queue using a given comparator.
|
LongHeapSemiIndirectPriorityQueue(long[] refArray,
int capacity,
it.unimi.dsi.fastutil.longs.LongComparator c)
Creates a new empty queue without elements with a given capacity and comparator.
|
LongHeapSemiIndirectPriorityQueue(long[] refArray,
it.unimi.dsi.fastutil.longs.LongComparator c)
Creates a new empty queue with capacity equal to the length of the reference array and a given comparator.
|
| Modifier and Type | Method and Description |
|---|---|
void |
allChanged()
Rebuilds this heap in a bottom-up fashion (in linear time).
|
void |
changed() |
void |
clear() |
it.unimi.dsi.fastutil.longs.LongComparator |
comparator()
Returns the type-specific comparator associated with this queue.
|
int |
dequeue() |
void |
enqueue(int x) |
protected void |
ensureElement(int index)
Ensures that the given index is a valid reference.
|
int |
first() |
int |
front(int[] a)
Writes in the provided array the front of the queue, that is, the set of indices
whose elements have the same priority as the top.
|
int |
size() |
java.lang.String |
toString() |
void |
trim()
Trims the backing array so that it has exactly
size() elements. |
protected final long[] refArray
protected int[] heap
protected int size
protected it.unimi.dsi.fastutil.longs.LongComparator c
public LongHeapSemiIndirectPriorityQueue(long[] refArray,
int capacity,
it.unimi.dsi.fastutil.longs.LongComparator 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 LongHeapSemiIndirectPriorityQueue(long[] refArray,
int capacity)
refArray - the reference array.capacity - the initial capacity of this queue.public LongHeapSemiIndirectPriorityQueue(long[] refArray,
it.unimi.dsi.fastutil.longs.LongComparator c)
refArray - the reference array.c - the comparator used in this queue, or null for the natural order.public LongHeapSemiIndirectPriorityQueue(long[] refArray)
refArray - the reference array.public LongHeapSemiIndirectPriorityQueue(long[] refArray,
int[] a,
int size,
it.unimi.dsi.fastutil.longs.LongComparator 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 LongHeapSemiIndirectPriorityQueue(long[] refArray,
int[] a,
it.unimi.dsi.fastutil.longs.LongComparator 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 LongHeapSemiIndirectPriorityQueue(long[] 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 LongHeapSemiIndirectPriorityQueue(long[] 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.protected void ensureElement(int index)
index - an index in the reference array.java.lang.IndexOutOfBoundsException - if the given index is negative or larger than the reference array length.public void enqueue(int x)
enqueue in interface it.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.Long>public int dequeue()
dequeue in interface it.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.Long>public int first()
first in interface it.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.Long>public void changed()
The 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.Long>public void allChanged()
allChanged in interface it.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.Long>public int size()
size in interface it.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.Long>public void clear()
clear in interface it.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.Long>public void trim()
size() elements.public it.unimi.dsi.fastutil.longs.LongComparator comparator()
LongIndirectPriorityQueuecomparator in interface it.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.Long>comparator in interface LongIndirectPriorityQueueIndirectPriorityQueue.comparator()public int front(int[] a)
front in interface it.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.Long>a - an array whose initial part will be filled with the frnot (must be sized as least as the heap size).public java.lang.String toString()
toString in class java.lang.Object