123456789101112
/** * Construct the tree. */ template <class Comparable> SplayTree<Comparable>::SplayTree( const Comparable & notFound ) : ITEM_NOT_FOUND( notFound ) { nullNode = new BinaryNode<Comparable>; nullNode->left = nullNode->right = nullNode; nullNode->element = notFound; root = nullNode; }