 | FibonacciHeapItemT Constructor |
Constructs a new container for the passed item that can be inserted
into a Fibonacci heap with the specified key for comparing it to
other heap items for order.
Namespace: Slash.Collections.PriorityQueuesAssembly: Slash.Collections (in Slash.Collections.dll) Version: 1.0.6018.40177
Syntaxprotected FibonacciHeapItem(
T item,
double key
)
Protected Sub New (
item As T,
key As Double
)
protected:
FibonacciHeapItem(
T item,
double key
)
new :
item : 'T *
key : float -> FibonacciHeapItem
Parameters
- item
- Type: T
Item held by the new container. - key
- Type: SystemDouble
Key of the item which is used for comparing it to other
heap items for order.
See Also