Question: List: A pointer to an int. This member points to the dynamically allocated array of integers. numElements: An integer that holds the number of elements

List: A pointer to an int. This member points to the dynamically allocated array of integers. numElements: An integer that holds the number of elements in the dynamically allocated array. isValid: This function validates a subscript into the array. It accepts a subscript value as an argument and returns boolean true if the subscript is in the range 0 through numElements - 1. If the value is outside that range, boolean false is returned. Constructor: The class constructor accepts an int argument that is the number of elements to allocate for the array. The array is allocated, and each element is set to zero. Destructor: release the dynamically allocated memory in the destructor. lab: submit the class definition and implementation of IntegerList (both .h and.cpp)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
