kids encyclopedia robot

Quicksort facts for kids

Kids Encyclopedia Facts
Sorting quicksort anim
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, 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

  1. Pick any item in the array, this will now be the pivot point.
  2. 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.
  3. Recursively apply the algorithm to all items left of the pivot (excluding the current pivot)
  4. 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.

See also

Kids robot.svg In Spanish: Quicksort para niños

kids search engine
Quicksort Facts for Kids. Kiddle Encyclopedia.