Implementing Binary Trees
class binary_tree {
public:
binary_tree();
~binary_tree();
int insert(const data &);
int remove(const key &);
int retrieve (const key &,
data [], int & num_matches);
void display();