Question:
Data structures C++ -- Quick sort Algorithm
Use the quicksort algorithm to sort vector v. During each pass, list all exchanges of a pair of elements in the lower and upper sublist. List the ordering of the elements after each pass.
int arr[] = {790, 175, 284, 581, 374, 799, 852, 685, 486, 333};
int arrSize = sizeof(arr)/sizeof(int);
vectorv(arr, arr+arrSize);
Please include the full program and the .exe file if the question makes sense