Interface INode<T>
- Namespace
- AlgorithmsSW.SearchTrees
- Assembly
- AlgorithmsSW.dll
Represents a node in a search tree.
public interface INode<T>
Type Parameters
T
The type of the item in the node.
- Extension Methods
Properties
Item
Gets or sets the item in the node.
T Item { get; set; }
Property Value
- T