// Two-three tree implementation for the Dictionary ADT template class TTTree : public Dictionary { public: TTTree(); ~TTTree(); void clear(); bool insert(const Elem&); bool remove(const Key&, Elem&); bool removeAny(Elem&); bool find(const Key&, Elem&) const; int size(); void print() const; };