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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started