// binary search tree // #ifndef TREE_H_ #define TREE_H_ #include "Node.h" class Tree { private: Node *root; public: Tree() { root = nullptr; } void insert( long d); void print() const; }; #endif // TREE_H_