Interface IRedBlackTree<T>
A self sorting binary tree using the red-black tree algorithms.
Inherited Members
Namespace: Towel.DataStructures
Assembly: Towel.dll
Syntax
public interface IRedBlackTree<T> : ISortedBinaryTree<T>, IDataStructure<T>, ISteppable<T>, System.Collections.Generic.IEnumerable<T>, DataStructure.IAddable<T>, DataStructure.IRemovable<T>, DataStructure.ICountable, DataStructure.IClearable, DataStructure.IAuditable<T>
Type Parameters
Name | Description |
---|---|
T | The type of values stored in this data structure. |