Implementing Binary Trees
//continued....class interface
   private:
     node * root;
};
Notice that instead of using “head” we use “root”
to establish the “starting point” in the tree
If the tree is empty, root is NULL.