Question: In java. Please explain too -- P14.5 Implement the following modification of the quicksort algorithm, due to Bentley and Mcllroy. Instead of using the first

In java. Please explain too
-- P14.5 Implement the following modification of the quicksort algorithm, due to Bentley and Mcllroy. Instead of using the first element as the pivot, use an approximation of the median. If ns 7, use the middle element. If ns 40, use the median of the first, middle, and last element. Otherwise compute the "pseudomedian" of the nine elements a[i*(n-1)/8), where i ranges from 0 to 8. The pseudomedian of nine values is med(med(vo, vi, va). med(v3, V4 V5), med(V6, 17, vg)). Compare the running time of this modification with that of the original algorithm on sequences that are nearly sorted or reverse sorted, and on sequences with many identical elements. What do you observe
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
