 | FibonacciHeapItemT Class |
Container for an item that can be inserted into a Fibonacci heap.
Provides a pointer to its heap position and a key for comparing it to
other heap items for order.
Inheritance HierarchySystemObject Slash.Collections.PriorityQueuesFibonacciHeapItemT
Namespace: Slash.Collections.PriorityQueuesAssembly: Slash.Collections (in Slash.Collections.dll) Version: 1.0.6018.40177
Syntaxpublic class FibonacciHeapItem<T> : IPriorityQueueItem<T>
Public Class FibonacciHeapItem(Of T)
Implements IPriorityQueueItem(Of T)
generic<typename T>
public ref class FibonacciHeapItem : IPriorityQueueItem<T>
type FibonacciHeapItem<'T> =
class
interface IPriorityQueueItem<'T>
end
Type Parameters
- T
- Type of the item held by this container.
The FibonacciHeapItemT type exposes the following members.
Constructors
| Name | Description |
---|
 | FibonacciHeapItemT |
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.
|
Top
Properties
| Name | Description |
---|
 | Item |
Item held by this container.
|
 | Key |
Key of the item which is used for comparing it to other
heap items for order.
|
Top
See Also