Sorry! We could not find what you were looking for

Try going back to the main page here

 
4
4
0
0
0
0

BinaryNode.H

template <class Comparable>BST; template <class Comparable> class BinaryNode { private: Comparble element; BinaryNode *left; BinaryNode *right; BinaryNode (const Comparable & theElement, const BinaryNode *L, const BinaryBode *R) : element (theElement), left(L), right(R) { /* no code */ } friend class BST<Comparable> };
Wednesday, 05-Jan-2000 15:46:21 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