QUICKSORT(A,left, right) if left < right p ← Partition(A,left,right) QUICKSORT(A,left,p) QUICKSORT(A,p+1,right)