Interface IHeapItem<T>
An interface to make items in the heap required to store an index which will then be compared by priority for ordering.
Namespace: Global
Assembly: cs.temp.dll.dll
Syntax
public interface IHeapItem<T>
Type Parameters
Name | Description |
---|---|
T | The type of object to be sorted in the heap. |
Properties
HeapIndex
Getter and setter for the heap index.
Declaration
int HeapIndex { get; set; }
Property Value
Type | Description |
---|---|
Int32 |