Question: Modify the quick sort algorithm so it is generic AND will sort the array in reverse. Also add a local variable count (make sure to
Modify the quick sort algorithm so it is generic AND will sort the array in reverse. Also add a local variable count (make sure to use the type long) that will count the number of elements comparisons that were performed for this sorting. Display the value of count before exiting this method. The method should have the following header: static void GenericReverseQuickSort
Provided Quick Sort algorithm:
static void QuickSort
static void QuickSortHelper
} }
static int Partition
for(int j = startIdx; j i++; //swap elem i and last T tmp2 = arr[i]; arr[i] = arr[endIdx]; arr[endIdx] = tmp2; return i; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
