Question: need to implement these three functions add, search and remove. class MySetList { public: virtual unsigned int size() = 0; virtual void add(string s) =
need to implement these three functions add, search and remove.

class MySetList { public: virtual unsigned int size() = 0; virtual void add(string s) = 0; virtual void remove(const string & s) = 0; virtual bool search(const string & s) = 0; }; class ArraySetList : public MySetList { private: vector
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
