The following definition of List is incorrect. How would you fix it?
templateclass ListItem;template class List {public: List (); List (const List &); List & operator=(const List &); ~List(); void insert(ListItem *ptr, elemType value);private: ListItem *front, *end;};
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.