Sorry! We could not find what you were looking for

Try going back to the main page here

 
4
4
0
0
0
0

Binary Search Tree MAKEEMTPY Operation

//---- public makeEmpty ( ) ----- template <class Comparable> void BST<Comparable>::makeEmtpy ( ) { // just call private method makeEmpty ( root ); } //---- private makeEmpty ( ) ------ template <class Comparable> void BST<Comparable>:: makeEmpty ( BinaryNode<Comparable> * & t ) { if ( t != NULL ) { makeEmpty ( t->left ); makeEmpty ( t->right ); delete t; } }
Wednesday, 05-Jan-2000 15:49:44 EST

Sorry! We could not find what you were looking for

Try going back to the main page here

 
4
4
0
0
0
0

Sorry! We could not find what you were looking for

Try going back to the main page here

 
4
4
0
0
0
0