Interface IBSTNode<T>
Namespace: Advanced.Algorithms.DataStructures
Assembly: Advanced.Algorithms.dll
Syntax
public interface IBSTNode<T>
where T : IComparable
Type Parameters
Name | Description |
---|---|
T |
Properties
Left
Declaration
IBSTNode<T> Left { get; }
Property Value
Type | Description |
---|---|
IBSTNode<T> |
Right
Declaration
IBSTNode<T> Right { get; }
Property Value
Type | Description |
---|---|
IBSTNode<T> |
Value
Declaration
T Value { get; }
Property Value
Type | Description |
---|---|
T |