Quick Sort
- Uses divide and conquer strategy.
- Recursive algorithm.
- The merge step does nothing.
In practice Quick Sort outperforms Merge Sort, Insertion Sort and Selection Sort.
Partition
- Arrange the elements smaller than pivot to its left.
- Then arrange the elements bigger than the pivot to its right.
- The elements don’t have to be in order. Just to the correct side of the pivot.
Recursively call the divide step until the sub-arrays less than 2 elements long.