AVLTree<TKey,TValue> class
Implementation of a Balanced AVL Binary Search Tree.
public class AVLTree<TKey, TValue> : BinarySearchTree<TKey, TValue>
where TKey : IComparable<TKey>
Public Members
| name | description |
|---|---|
| AVLTree() | Default Constructor |
| override Add(…) | Adds a node to the tree. |
| override Remove(…) | Removes the node containing this data from the tree. |
Protected Members
| name | description |
|---|---|
| override CloneInstance() | Helper function used during Clone to create a new AVL Tree |
See Also
- class BinarySearchTree<TKey,TValue>
- namespace TheCodingMonkey.Collections.BST