Quick Sort

Tip

Quick Sort is a divide and conquer sorting algorithm that uses recursion and a pivot point. It provides an average BigO(n log n) and worst case BigO(n^2) complexity, depending on the Pivot point used.