2
퀵 정렬 분류 : Hoare vs. Lomuto
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 …