Package it.unimi.dsi.fastutil.longs
Class LongPriorityQueues.SynchronizedPriorityQueue
java.lang.Object
it.unimi.dsi.fastutil.longs.LongPriorityQueues.SynchronizedPriorityQueue
- All Implemented Interfaces:
LongPriorityQueue,PriorityQueue<Long>
- Enclosing class:
- LongPriorityQueues
public static class LongPriorityQueues.SynchronizedPriorityQueue
extends Object
implements LongPriorityQueue
A synchronized wrapper class for priority queues.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchanged()Notifies the queue that the first element has changed (optional operation).voidclear()Removes all elements from this queue.Returns the comparator associated with this priority queue, or null if it uses its elements' natural ordering.dequeue()Deprecated.longDequeues the first element from the queue.voidenqueue(long x) Enqueues a new element.voidDeprecated.booleanfirst()Deprecated.longReturns the first element of the queue.inthashCode()booleanisEmpty()Checks whether this queue is empty.last()Deprecated.longlastLong()Returns the last element of the queue, that is, the element the would be dequeued last (optional operation).intsize()Returns the number of elements in this queue.
-
Method Details
-
enqueue
public void enqueue(long x) Description copied from interface:LongPriorityQueueEnqueues a new element.- Specified by:
enqueuein interfaceLongPriorityQueue- Parameters:
x- the element to enqueue.- See Also:
-
dequeueLong
public long dequeueLong()Description copied from interface:LongPriorityQueueDequeues the first element from the queue.- Specified by:
dequeueLongin interfaceLongPriorityQueue- Returns:
- the dequeued element.
- See Also:
-
firstLong
public long firstLong()Description copied from interface:LongPriorityQueueReturns the first element of the queue.- Specified by:
firstLongin interfaceLongPriorityQueue- Returns:
- the first element.
- See Also:
-
lastLong
public long lastLong()Description copied from interface:LongPriorityQueueReturns the last element of the queue, that is, the element the would be dequeued last (optional operation).This default implementation just throws an
UnsupportedOperationException.- Specified by:
lastLongin interfaceLongPriorityQueue- Returns:
- the last element.
- See Also:
-
isEmpty
public boolean isEmpty()Description copied from interface:PriorityQueueChecks whether this queue is empty.This default implementation checks whether
PriorityQueue.size()is zero.- Specified by:
isEmptyin interfacePriorityQueue<Long>- Returns:
- true if this queue is empty.
-
size
public int size()Description copied from interface:PriorityQueueReturns the number of elements in this queue.- Specified by:
sizein interfacePriorityQueue<Long>- Returns:
- the number of elements in this queue.
-
clear
public void clear()Description copied from interface:PriorityQueueRemoves all elements from this queue.- Specified by:
clearin interfacePriorityQueue<Long>
-
changed
public void changed()Description copied from interface:PriorityQueueNotifies the queue that the first element has changed (optional operation).This default implementation just throws an
UnsupportedOperationException.- Specified by:
changedin interfacePriorityQueue<Long>
-
comparator
Description copied from interface:LongPriorityQueueReturns the comparator associated with this priority queue, or null if it uses its elements' natural ordering.- Specified by:
comparatorin interfaceLongPriorityQueue- Specified by:
comparatorin interfacePriorityQueue<Long>- Returns:
- the comparator associated with this priority queue.
- See Also:
-
enqueue
Deprecated.Description copied from interface:LongPriorityQueueEnqueues a new element.This default implementation delegates to the corresponding type-specific method.
- Specified by:
enqueuein interfaceLongPriorityQueue- Specified by:
enqueuein interfacePriorityQueue<Long>- Parameters:
x- the element to enqueue.
-
dequeue
Deprecated.Description copied from interface:LongPriorityQueueDequeues the first element from the queue.This default implementation delegates to the corresponding type-specific method.
- Specified by:
dequeuein interfaceLongPriorityQueue- Specified by:
dequeuein interfacePriorityQueue<Long>- Returns:
- the dequeued element.
-
first
Deprecated.Description copied from interface:LongPriorityQueueReturns the first element of the queue.This default implementation delegates to the corresponding type-specific method.
- Specified by:
firstin interfaceLongPriorityQueue- Specified by:
firstin interfacePriorityQueue<Long>- Returns:
- the first element.
-
last
Deprecated.Description copied from interface:LongPriorityQueueReturns the last element of the queue, that is, the element the would be dequeued last (optional operation).This default implementation just throws an
UnsupportedOperationException.This default implementation delegates to the corresponding type-specific method.
- Specified by:
lastin interfaceLongPriorityQueue- Specified by:
lastin interfacePriorityQueue<Long>- Returns:
- the last element.
-
hashCode
public int hashCode() -
equals
-