|
lab_avl
AVL Apocalypse
|
Represents a tree node; that is, an element in a AVLTree. More...
Public Member Functions | |
| Node (const K &newKey, const V &newValue) | |
| Node element constructor; sets children to point to NULL. More... | |
Represents a tree node; that is, an element in a AVLTree.
It has a data element and pointers to its left and right children.
|
inline |
Node element constructor; sets children to point to NULL.
| newKey | The object to use as a key |
| newValue | The templated data element that the constructed node will hold. |
1.8.9.1