Perguntas com a marcação «quicksort»

83
Particionamento Quicksort: Hoare vs. Lomuto

Existem dois métodos de partição quicksort mencionados em Cormen: Hoare-Partition(A, p, r) x = A[p] i = p - 1 j = r + 1 while true repeat j = j - 1 until A[j] <= x repeat i = i + 1 until A[i] >= x if i < j swap( A[i], A[j] ) else return j e: Lomuto-Partition(A, p, r) x =...