Click or drag to resize
Accord.NET (logo)

PriorityQueueTDequeue Method

Removes the head of the queue (node with minimum priority; ties are broken by order of insertion), and returns it. This is an O(log n) operation.

Namespace:  Accord.Collections
Assembly:  Accord (in Accord.dll) Version: 3.8.0
Syntax
public PriorityQueueNode<T> Dequeue()
Request Example View Source

Return Value

Type: PriorityQueueNodeT
See Also