Click or drag to resize
Accord.NET (logo)

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
)
Request Example View Source

Parameters

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