// File: main4.C // // Testing the BSTree class. #include #include #include "bstree.h" main() { BSTree *Tptr, *temp ; BSTreeNode Node, *Nptr ; Nptr = new BSTreeNode ; Tptr = new BSTree ; delete Tptr ; }