Stooge Sort
if A[r] < A[l] swap A[r] and A[l] if r - l > 1 t = floor((r - l + 1)/3) StoogeSort(A,l,r-t) StoogeSort(A,l+t,r) StoogeSort(A,l,r-t)