Purchase Solution

Quick sort

Not what you're looking for?

Ask Custom Question

Suppy an array containing integers 1 through 12 such that a quicksort algorithm using median of three will recurse to 6 levels, counting the top level as 0; showing that even with median of three, quicksort has worst case performance of O(n^2).

The pivot is then moved to the end and the partition is performed, then after the partition, the pivot moves to its rightful place.

Median of three: on the range [p, r], choosing as the split value the median of vals[p], vals[r], and vals[(p+r)/2].

Purchase this Solution

Solution Summary

Quick sort is demonstrated. The median of three worst case scenarios are determined.

Solution Preview

Quick sort is recursive divide-and-conquer technique.
In each round of quick sort:
1. choose a pivot amongst the unsorted values (say, the first value)
2. move all values less than the pivot before the pivot
3. move all values greater than the pivot after the pivot
4. pivot is now in correct place in sorted order ...

Purchase this Solution


Free BrainMass Quizzes
Basic UNIX commands

Use this quiz to check your knowledge of a few common UNIX commands. The quiz covers some of the most essential UNIX commands and their basic usage. If you can pass this quiz then you are clearly on your way to becoming an effective UNIX command line user.

Java loops

This quiz checks your knowledge of for and while loops in Java. For and while loops are essential building blocks for all Java programs. Having a solid understanding of these constructs is critical for success in programming Java.

Basic Computer Terms

We use many basic terms like bit, pixel in our usual conversations about computers. Are we aware of what these mean? This little quiz is an attempt towards discovering that.

Javscript Basics

Quiz on basics of javascript programming language.

Word 2010: Tables

Have you never worked with Tables in Word 2010? Maybe it has been a while since you have used a Table in Word and you need to brush up on your skills. Several keywords and popular options are discussed as you go through this quiz.