Dynamic-Memory-Allocation-using-Array-Class
Array Class demonstrating the use of dynamic array, here is a brief overview of the code:-
- Declares an array pointer.
- Separate function for insert, resize and remove.
- When array utilization is around 70%, allocates a new array with double size, copy elements of original array into it and delete the original array. Then set pointer, pointing to original array to this new array.