A myset class that operates much like the built-in std::set container, and a set of unit tests to test myset implementation.
Myset class is a generic container that supports the following operations:
•default constructor •copy constructor •destructor •size() •empty() •clear() •insert(e) •operator+= •find(e) •[e] •operator= •begin() •end() •Iterator class