Introduction to Quicksort

This algorithm sorts a list by choosing a pivot and comparing each element to that pivot. (Reading time: )

We'll cover the following...

As quicksort doesn’t use any space, it’s a in-place sorting algorithm ...