Interface IAvlTree<T>
A self-sorting binary tree based on the heights of each node.
Inherited Members
Namespace: Towel.DataStructures
Assembly: Towel.dll
Syntax
public interface IAvlTree<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. |