Skip to content

Files

Latest commit

bb110a8 · Feb 25, 2019

History

History
This branch is up to date with matthewsamuel95/ACM-ICPC-Algorithms:master.

QuickSort

QuickSort

Quicksort (sometimes called partition-exchange sort) is an efficient sorting algorithm, serving as a systematic method for placing the elements of an array in order. Developed by British computer scientist Tony Hoare in 1959 and published in 1961, it is still a commonly used algorithm for sorting. When implemented well, it can be about two or three times faster than its main competitors, merge sort and heapsort.

Source: Wikipedia