Quicksort

From Simple English Wikipedia, the free encyclopedia
Animated visualization of the quicksort algorithm. The horizontal lines are pivot values

Quicksort is a sorting algorithm that is used to sort items in an array. It was created by Tony Hoare in 1959,[1] and it is still widely used today. Quicksort splits the array into two parts, and then continues to split those parts into more parts, and sorting along the way. It sorts by using a comparison sort. This means that it chooses a pivot point in a part of the array and then compares it with all the other points in that part of the array.

Algorithm[change | change source]

  1. If there is only one item in the array, or no items, stop because we don't need to sort anything.
  2. Pick any item in the array, this will now be the pivot point.
  3. Partition the items. Compare each item to the pivot. If it is smaller than the pivot it should come before the pivot in the array, if it is larger it should come after the pivot. Note that our pivot is now in its sorted position.
  4. Recursively apply the algorithm to all items left of the pivot (excluding the current pivot)
  5. Recursively apply the algorithm to all items right of the pivot (excluding the current pivot)

Often the leftmost item is chosen as the pivot. The recursion means that the algorithm runs the same exact algorithm on the two partitions that were created by the comparisons to the pivot. Note that this algorithm will keep on partitioning the array into subarrays, and splitting those subarrays into even smaller subarrays. Each time it does this, it will choose a new pivot within the subarray and compare the items to the subarray. The base case is when the algorithm reaches a subarray with only one item, in which it just stops because one item does not need to be sorted.

References[change | change source]

  1. "Sir Antony Hoare | Computer History Museum". web.archive.org. 2015-04-03. Archived from the original on 2015-04-03. Retrieved 2019-02-25.{{cite web}}: CS1 maint: bot: original URL status unknown (link)