Question: C++ Write a function sorts a vector of integers from least to greatest and then splits the sorted vector into four additional vectors: one containing
C++ Write a function sorts a vector of integers from least to greatest and then splits the sorted vector into four additional vectors: one containing the first quarter, the second containing the next quarter, the third containing the third quarter and the last one containing the last quarter. The four vectors are stored in an array of size 4. Assume that the original vector divides evenly into four pieces. Include the function parameters and function call. You can not use the standard sort function for vectors. Here is the vector: vector theData = {11, 2, 32, 64, 7, 9)
Step by Step Solution
There are 3 Steps involved in it
To solve this problem you need to implement a sorting function without using the standard sort funct... View full answer
Get step-by-step solutions from verified subject matter experts
