Database
aa0012.txt
Associated article: AVL Trees
Tags: Database Embedded Systems Design
Published source code accompanying the article by Timothy Rolfe in which he examines AVL trees.
Algorithm Alley
by Timothy Rolfe
Listing One
void BST::Insert( BSTnode* &Node, const Data &Value )
{
if ( Node == NULL ) // failure point --- recursion base case
Node = new BSTnode(Value); // change Node (reference parameter)
else if ( Value < Node->...


