[알고리즘]퀵 정렬(Quick Sort)

· 10년 전 · 1264

<?

// 퀵 정렬(Quick Sort)

function Swap(&$arr, $idx1, $idx2) {

$temp = $arr[$idx1];

$arr[$idx1] = $arr[$idx2];

$arr[$idx2] = $temp; 

}

 

// 중간값 찾기

function MedianOfThree($arr, $left, $right) {

$samples = array($left, floor(($left+$right)/2), $right);

if ($arr[$samples[0]] > $arr[$samples[1]])

Swap($samples, 0, 1);

if ($arr[$samples[1]] > $arr[$samples[2]])

Swap($samples, 1, 2);

if ($arr[$samples[0]] > $arr[$samples[1]])

Swap($samples, 0, 1);

 

return $samples[1];

}

 

function Partition(&$arr, $left, $right) {

$pIdx = MedianOfThree($arr, $left, $right); // 중간값으로 피벗 선택

$pivot = $arr[$pIdx];

 

$low = $left + 1;

$high = $right;

Swap($arr, $left, $pIdx); // 피벗을 가장 왼쪽으로 이동

 

while ($low <= $high) { // 교차되지 않을 때까지 반복

 

// 피벗보다 큰 값을 찾는 과정

while ($low <= $right  && $pivot >= $arr[$low])

$low++;

// 피벗보다 작은 값을 찾는 과정

while ($high >= ($left+1) && $pivot <= $arr[$high])  

$high--;

 

// 교차되지 않는 상태라면 Swap 실행

if ($low <= $high)

Swap($arr, $low, $high);

}

 

Swap($arr, $left, $high); // 피벗과 high 가 가리키는 대상 교환

return $high; // 옮겨진 피벗의 위치정보 교환

}

 

function QuickSort(&$arr, $left, $right) {

if ($left < $right) {

$pivot = Partition($arr, $left, $right); 

QuickSort($arr, $left, $pivot-1);

QuickSort($arr, $pivot+1, $right);

}

}

$arr = array(3, 2, 4, 1, 7, 6, 5);

$len = count($arr);

QuickSort($arr, 0, $len-1);

 

print_r($arr);

?>

|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
9년 전 조회 1,444
9년 전 조회 1,439
9년 전 조회 1,551
9년 전 조회 1,419
10년 전 조회 1,532
10년 전 조회 1,372
10년 전 조회 1,442
10년 전 조회 1,260
10년 전 조회 1,493
10년 전 조회 1,307
10년 전 조회 1,317
10년 전 조회 1,415
10년 전 조회 1,345
10년 전 조회 1,357
10년 전 조회 1,281
10년 전 조회 1,696
10년 전 조회 1,737
10년 전 조회 1,714
10년 전 조회 1,645
10년 전 조회 1,442
10년 전 조회 1,580
10년 전 조회 1,723
10년 전 조회 1,409
10년 전 조회 1,717
10년 전 조회 1,694
10년 전 조회 2,072
10년 전 조회 1,666
10년 전 조회 1,894
10년 전 조회 1,521
10년 전 조회 1,639
10년 전 조회 1,368
10년 전 조회 1,424
10년 전 조회 1,495
10년 전 조회 1,493
10년 전 조회 1,625
10년 전 조회 1,399
10년 전 조회 1,428
10년 전 조회 1,384
10년 전 조회 1,344
10년 전 조회 1,405
10년 전 조회 1,236
10년 전 조회 1,285
10년 전 조회 1,196
10년 전 조회 1,337
10년 전 조회 1,285
10년 전 조회 1,763
10년 전 조회 1,241
10년 전 조회 1,207
10년 전 조회 1,452
10년 전 조회 1,265
10년 전 조회 1,230
10년 전 조회 1,240
10년 전 조회 1,184
10년 전 조회 1,112
10년 전 조회 1,110
10년 전 조회 1,202
10년 전 조회 1,205
10년 전 조회 1,129
10년 전 조회 1,023
10년 전 조회 1,111
10년 전 조회 1,078
10년 전 조회 1,106
10년 전 조회 1,159
10년 전 조회 1,152
10년 전 조회 1,096
10년 전 조회 1,112
10년 전 조회 1,160
10년 전 조회 1,117
10년 전 조회 1,194
10년 전 조회 1,131
10년 전 조회 1,064
10년 전 조회 1,048
10년 전 조회 1,064
10년 전 조회 1,044
10년 전 조회 1,074
10년 전 조회 1,101
10년 전 조회 1,051
10년 전 조회 1,126
10년 전 조회 1,056
10년 전 조회 1,167
10년 전 조회 1,247
10년 전 조회 1,208
10년 전 조회 1,159
10년 전 조회 1,073
10년 전 조회 1,188
10년 전 조회 1,101
10년 전 조회 1,137
10년 전 조회 1,079
10년 전 조회 1,060
10년 전 조회 1,061
10년 전 조회 1,086
10년 전 조회 1,186
10년 전 조회 1,124
10년 전 조회 1,210
10년 전 조회 1,096
10년 전 조회 1,121
10년 전 조회 1,112
10년 전 조회 1,175
10년 전 조회 1,266
10년 전 조회 1,345