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

· 10년 전 · 1472

<?

// 퀵 정렬(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,595
10년 전 조회 1,643
10년 전 조회 1,763
10년 전 조회 1,601
10년 전 조회 1,728
10년 전 조회 1,527
10년 전 조회 1,610
10년 전 조회 1,424
10년 전 조회 1,653
10년 전 조회 1,454
10년 전 조회 1,501
10년 전 조회 1,607
10년 전 조회 1,508
10년 전 조회 1,546
10년 전 조회 1,474
10년 전 조회 1,881
10년 전 조회 1,902
10년 전 조회 1,889
10년 전 조회 1,851
10년 전 조회 1,638
10년 전 조회 1,756
10년 전 조회 1,928
10년 전 조회 1,633
10년 전 조회 1,910
10년 전 조회 1,886
10년 전 조회 2,262
10년 전 조회 1,872
10년 전 조회 2,079
10년 전 조회 1,697
10년 전 조회 1,859
10년 전 조회 1,551
10년 전 조회 1,635
10년 전 조회 1,676
10년 전 조회 1,674
10년 전 조회 1,845
10년 전 조회 1,611
10년 전 조회 1,636
10년 전 조회 1,647
10년 전 조회 1,553
10년 전 조회 1,611
10년 전 조회 1,429
10년 전 조회 1,510
10년 전 조회 1,419
10년 전 조회 1,572
10년 전 조회 1,516
10년 전 조회 1,979
10년 전 조회 1,444
10년 전 조회 1,422
10년 전 조회 1,681
10년 전 조회 1,473
10년 전 조회 1,447
10년 전 조회 1,454
10년 전 조회 1,408
10년 전 조회 1,341
10년 전 조회 1,306
10년 전 조회 1,424
10년 전 조회 1,394
10년 전 조회 1,356
10년 전 조회 1,239
10년 전 조회 1,322
10년 전 조회 1,324
10년 전 조회 1,340
10년 전 조회 1,386
10년 전 조회 1,373
10년 전 조회 1,321
10년 전 조회 1,324
10년 전 조회 1,369
10년 전 조회 1,344
10년 전 조회 1,431
10년 전 조회 1,343
10년 전 조회 1,292
10년 전 조회 1,270
10년 전 조회 1,293
10년 전 조회 1,305
10년 전 조회 1,305
10년 전 조회 1,323
10년 전 조회 1,268
10년 전 조회 1,328
10년 전 조회 1,264
10년 전 조회 1,369
10년 전 조회 1,454
10년 전 조회 1,425
10년 전 조회 1,358
10년 전 조회 1,273
10년 전 조회 1,399
10년 전 조회 1,297
10년 전 조회 1,347
10년 전 조회 1,293
10년 전 조회 1,261
10년 전 조회 1,251
10년 전 조회 1,283
10년 전 조회 1,360
10년 전 조회 1,302
10년 전 조회 1,387
10년 전 조회 1,301
10년 전 조회 1,344
10년 전 조회 1,324
10년 전 조회 1,389
10년 전 조회 1,467
10년 전 조회 1,532