Final answer:
The lab involves implementing a shell sort algorithm in C++, define a city array with specific details, and write functions to initialize and sort a vector of City objects based on their populations.
Step-by-step explanation:
A lab activity that requires implementing a shell sort algorithm in C++, focusing on sorting objects instead of primitive data types. In this lab, you're asked first to globally define an array cityArray[] with specific cities and populations. Then, you need to create an array of gap values gaps[] according to the shell sort algorithm. Finally, you'll define a vector of City objects and write functions to initialize this vector with the cityArray, print its contents, and sort it using a modified insertion sort that accounts for gaps between elements.
To accomplish these tasks:
- Define cityArray[] with the cities and populations provided.
- Define gaps[] with gap values 4, 2, and 1.
- Declare a vector cityVector to store City objects.
- Create the initVector() function to initialize cityVector with array elements.
- Create the printCityVector() function to display the content of the vector.
- Develop the cityInterleavedInsertionSort() function to sort the vector using the gap values.
This lab serves as a practical application of the shell sort algorithm in object-oriented programming, exemplifying its operation on complex data types.