public sealed class PriorityQueue<T> : IProducerConsumerCollection<T>,
IEnumerable<T>, IEnumerable, ICollection, IReadOnlyCollection<T>
Public NotInheritable Class PriorityQueue(Of T)
Implements IProducerConsumerCollection(Of T), IEnumerable(Of T),
IEnumerable, ICollection, IReadOnlyCollection(Of T)
generic<typename T>
public ref class PriorityQueue sealed : IProducerConsumerCollection<T>,
IEnumerable<T>, IEnumerable, ICollection, IReadOnlyCollection<T>
PriorityQueueT | Creates a new instance of the PriorityQueueT class. |
PriorityQueueT(Int32) | Creates a new instance of the PriorityQueueT class. |
PriorityQueueT(PriorityQueueT) | Creates a new instance of the PriorityQueueT class. |
CopyTo | Copies the PriorityQueueT elements to an existing one-dimensional Array, starting at the specified array index. |
Enqueue | Enqueues an item into the priority queue. |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetEnumerator | Returns an enumerator that iterates through the PriorityQueueT. |
GetHashCode | Serves as the default hash function. (Inherited from Object) |
GetType | Gets the Type of the current instance. (Inherited from Object) |
ToArray | Copies the elements stored in the PriorityQueueT to a new array. |
ToString | Returns a string that represents the current object. (Inherited from Object) |
TryDequeue(T) | Dequeues an item from the priority queue. |
TryDequeue(Int32, T) | Dequeues an item from the priority queue. |
TryPeek(T) | Tries to return an object from the beginning of the PriorityQueueT without removing it. |
TryPeek(Int32, T) | Tries to return an object from the beginning of the PriorityQueueT without removing it. |