Click or drag to resize
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 Hierarchy
SystemObject
  Slash.Collections.PriorityQueuesFibonacciHeapItemT

Namespace: Slash.Collections.PriorityQueues
Assembly: Slash.Collections (in Slash.Collections.dll) Version: 1.0.6018.40177
Syntax
public class FibonacciHeapItem<T> : IPriorityQueueItem<T>

Type Parameters

T
Type of the item held by this container.

The FibonacciHeapItemT type exposes the following members.

Constructors
  NameDescription
Protected methodFibonacciHeapItemT
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
  NameDescription
Public propertyItem
Item held by this container.
Public propertyKey
Key of the item which is used for comparing it to other heap items for order.
Top
See Also