Scanning and swapping around the pivot
Entering segment [0, 11] at recursive depth 0.
1function quickSort(arr, lo, hi):2 if lo >= hi: return3 p = partition(arr, lo, hi)4 quickSort(arr, lo, p-1)5 quickSort(arr, p+1, hi)