COMING SOON 🚀

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

· 10년 전 · 1334

<?

// 퀵 정렬(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);

?>

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

프로그램

+
제목 글쓴이 날짜 조회
10년 전 조회 1,500
10년 전 조회 1,506
10년 전 조회 1,633
10년 전 조회 1,490
10년 전 조회 1,593
10년 전 조회 1,423
10년 전 조회 1,506
10년 전 조회 1,326
10년 전 조회 1,549
10년 전 조회 1,354
10년 전 조회 1,381
10년 전 조회 1,494
10년 전 조회 1,394
10년 전 조회 1,426
10년 전 조회 1,352
10년 전 조회 1,764
10년 전 조회 1,798
10년 전 조회 1,761
10년 전 조회 1,720
10년 전 조회 1,501
10년 전 조회 1,635
10년 전 조회 1,790
10년 전 조회 1,498
10년 전 조회 1,795
10년 전 조회 1,754
10년 전 조회 2,140
10년 전 조회 1,746
10년 전 조회 1,950
10년 전 조회 1,582
10년 전 조회 1,709
10년 전 조회 1,434
10년 전 조회 1,494
10년 전 조회 1,558
10년 전 조회 1,545
10년 전 조회 1,694
10년 전 조회 1,467
10년 전 조회 1,493
10년 전 조회 1,462
10년 전 조회 1,406
10년 전 조회 1,470
10년 전 조회 1,284
10년 전 조회 1,355
10년 전 조회 1,258
10년 전 조회 1,400
10년 전 조회 1,346
10년 전 조회 1,820
10년 전 조회 1,297
10년 전 조회 1,266
10년 전 조회 1,523
10년 전 조회 1,335
10년 전 조회 1,304
10년 전 조회 1,314
10년 전 조회 1,249
10년 전 조회 1,179
10년 전 조회 1,163
10년 전 조회 1,257
10년 전 조회 1,257
10년 전 조회 1,188
10년 전 조회 1,086
10년 전 조회 1,172
10년 전 조회 1,143
10년 전 조회 1,161
10년 전 조회 1,214
10년 전 조회 1,224
10년 전 조회 1,160
10년 전 조회 1,166
10년 전 조회 1,213
10년 전 조회 1,178
10년 전 조회 1,253
10년 전 조회 1,180
10년 전 조회 1,128
10년 전 조회 1,106
10년 전 조회 1,127
10년 전 조회 1,106
10년 전 조회 1,133
10년 전 조회 1,156
10년 전 조회 1,120
10년 전 조회 1,177
10년 전 조회 1,115
10년 전 조회 1,210
10년 전 조회 1,297
10년 전 조회 1,268
10년 전 조회 1,211
10년 전 조회 1,134
10년 전 조회 1,248
10년 전 조회 1,158
10년 전 조회 1,184
10년 전 조회 1,138
10년 전 조회 1,117
10년 전 조회 1,116
10년 전 조회 1,139
10년 전 조회 1,231
10년 전 조회 1,171
10년 전 조회 1,256
10년 전 조회 1,148
10년 전 조회 1,184
10년 전 조회 1,169
10년 전 조회 1,226
10년 전 조회 1,321
10년 전 조회 1,407