A Collection of Code Snippets in as Many Programming Languages as Possible
This project is maintained by TheRenegadeCoder
Welcome to the Quick Sort page! Here, you’ll find a description of the project as well as a list of sample programs written in various languages.
Quick sort is an algorithm that works by dividing a list into smaller lists. It recursively partially sorts and divides each sublist into further lists until it reaches the base case of a list that is either empty or contains only a single element, because those cases are by definition already sorted. After that it concatenates all of the sublists together into a single sorted list.
Step by step the process is:
The performance of sorting algorithms is generally defined in “Big O notation”. If you are not familiar with such notations, please refer to the relevant article by Rob Bell or the wikipedia entry listed in further readings below.
Best case | O(n log n) |
Average case | O(n log n) |
Worst case | O(n2) |
As the name implies, quicksort is a rather efficient algorithm; however, its performance can be affected by the pivot that is selected. For example, always selecting the last element in the list (or sublist) can make the algorithm easy to write, but on a sorted list that will lead to an efficiency of O(n2) (the worst case).
The example below was taken from [Wikipedia’s article about Quick sort][1]. The bolded elements are the pivots. In this example, the last element in each list/sublist was chosen to be the pivot, but that is not necesary. (See the section about performance above.) Each row shows the comparison of an element to the pivot (steps 2-3). The arrows convey splitting each list into sublists and then bringing them back together (steps 4-5).
Write a sample program that takes a list of numbers in the format “4, 5, 3, 1, 2”. It should then sort the numbers and output them:
$ ./quick-sort.lang "4, 5, 3, 1, 2"
1, 2, 3, 4, 5
The solution should handle duplicate elements
$ ./quick-sort.lang "4, 5, 3, 1, 4, 2"
1, 2, 3, 4, 4, 5
In addition, there should be some error handling for situations where the user doesn’t supply correct input.
The following table contains various test cases that you can use to verify the correctness of your solution:
Description | Input | Output |
---|---|---|
No Input | Usage: please provide a list of at least two integers to sort in the format “1, 2, 3, 4, 5” | |
Empty Input | ”” | Usage: please provide a list of at least two integers to sort in the format “1, 2, 3, 4, 5” |
Invalid Input: Not a list | 1 | Usage: please provide a list of at least two integers to sort in the format “1, 2, 3, 4, 5” |
Invalid Input: Wrong Format | 4 5 3 | Usage: please provide a list of at least two integers to sort in the format “1, 2, 3, 4, 5” |
Sample Input | 4, 5, 3, 1, 2 | 1, 2, 3, 4, 5 |
Sample Input: With Duplicate | 4, 5, 3, 1, 4, 2 | 1, 2, 3, 4, 4, 5 |
Sample Input: Already Sorted | 1, 2, 3, 4, 5 | 1, 2, 3, 4, 5 |
Sample Input: Reverse Sorted | 9, 8, 7, 6, 5, 4, 3, 2, 1 | 1, 2, 3, 4, 5, 6, 7, 8, 9 |