Write pseudocode for median-of-three partitioning what is


Programming (non-collaborative)-

Given an array, a[i], ... ,a[j], with j - i ≥ 2, let k = ⌊1(i + j)/2⌋ and choose as the partition element for QulcKsowr the median among all, a[j], a[k] (i.e., the value that would be in the middle if a[i], o[j], and a[k] were sorted). This is called median-of-three partitioning. (NOTE: There are several descriptions of the median-of-three method on the web. Students are not permitted to seek out these descriptions in solving this problem.)

(a) Write pseudocode for median-of-three partitioning.

(b) What is the running time of median-of-three partitioning? Justify your answer.

(c) What is the running time of QUICKSORT if you use median-of-three partitioning on an input set that is already sorted? Justify your answer.

(d) Implement QUICKSORT using a normal pivot process and the median-of-three process described above. Test your run time analysis of medium-of-three, and then compare the average and worst case run times of QUICKSORT with the two pivot processes. Note that you must implement all of these algorithms from scratch. Also remember that CPU time is not a valid measure for testing run time. You must use something such as the number of comparisons.

Solution Preview :

Prepared by a verified Expert
Data Structure & Algorithms: Write pseudocode for median-of-three partitioning what is
Reference No:- TGS02727964

Now Priced at $30 (50% Discount)

Recommended (92%)

Rated (4.4/5)