Question: Create a C++ project including the following C++ files o Baginterface.h (ADT template file) o ArrayBag.h (class declaration header file) o ArrayBag.cpp (class implementation source

Create a C++ project including the following C++ files o Baginterface.h (ADT template file) o ArrayBag.h (class declaration header file) o ArrayBag.cpp (class implementation source file) o groceryBag.cpp (driver/tester program with main)) Compile the project to make it work properly Add a new public method remove (int anindex), to remove an item with a specific Index by shifting, one by one, the other items behind it one index ahead. For example, removing 3, [1,2,3,4,51,2,4,5) Add code in the main() function to test the various methods in arrayBag class, as required
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
