Node<TKey,TValue> class
SkipList Node.
public class Node<TKey, TValue>
where TKey : IComparable<TKey>
Public Members
| name | description |
|---|---|
| Height { get; } | Number of other nodes referenced by this Node. |
| Item { get; set; } | List of references to other nodes stored by this node. |
| Key { get; set; } | Key used for comparison and lookup. |
| Value { get; set; } | Value compared at this node. |
| DecrementHeight() | Decrements the Height |
| IncrementHeight() | Increments the Height |
See Also
- namespace TheCodingMonkey.Collections.SkipList