|
PriorityQueueNodeT Constructor
|
Namespace:
Accord.Collections
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public PriorityQueueNode(
T value,
double priority,
int index,
long insertionIndex
)
Public Sub New (
value As T,
priority As Double,
index As Integer,
insertionIndex As Long
)
Request Example
View SourceParameters
- value
- Type: T
The value to store in the node. - priority
- Type: SystemDouble
A double value representing the priority for the node. - index
- Type: SystemInt32
The index of the node in the priority queue. - insertionIndex
- Type: SystemInt64
The original index of the node in the priority queue, at time of first insertion.
See Also