링크
http://terms.naver.com/entry.nhn?docId=2270444&cid=51173&categoryId=51173 (15) https://ko.wikipedia.org/wiki/%ED%80%B5_%EC%A0%95%EB%A0%AC (15)<?
// 퀵 정렬(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);
?>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7430 |
|
11년 전 | 4943 | |
| 7429 | 11년 전 | 1772 | ||
| 7428 |
멋진남자임
|
11년 전 | 1160 | |
| 7427 |
sdflksdj2
|
11년 전 | 821 | |
| 7426 | 11년 전 | 1354 | ||
| 7425 | 11년 전 | 1380 | ||
| 7424 | 11년 전 | 1047 | ||
| 7423 |
SeungYeon
|
11년 전 | 557 | |
| 7422 | 11년 전 | 807 | ||
| 7421 |
sdflksdj2
|
11년 전 | 678 | |
| 7420 | 11년 전 | 962 | ||
| 7419 |
|
11년 전 | 1392 | |
| 7418 |
멋진남자임
|
11년 전 | 1414 | |
| 7417 | 11년 전 | 603 | ||
| 7416 |
senseme
|
11년 전 | 1219 | |
| 7415 | 11년 전 | 957 | ||
| 7414 | 11년 전 | 708 | ||
| 7413 | 11년 전 | 4846 | ||
| 7412 | 11년 전 | 4403 | ||
| 7411 |
holla
|
11년 전 | 890 | |
| 7410 | 11년 전 | 4245 | ||
| 7409 | 11년 전 | 3925 | ||
| 7408 | 11년 전 | 4268 | ||
| 7407 | 11년 전 | 5069 | ||
| 7406 | 11년 전 | 4726 | ||
| 7405 | 11년 전 | 4297 | ||
| 7404 | 11년 전 | 753 | ||
| 7403 | 11년 전 | 5675 | ||
| 7402 | 11년 전 | 1510 | ||
| 7401 |
|
11년 전 | 972 | |
| 7400 | 11년 전 | 2967 | ||
| 7399 |
멋진남자임
|
11년 전 | 910 | |
| 7398 |
파랑새1597
|
11년 전 | 2686 | |
| 7397 | 11년 전 | 2268 | ||
| 7396 |
basketball
|
11년 전 | 1361 | |
| 7395 | 11년 전 | 1606 | ||
| 7394 | 11년 전 | 925 | ||
| 7393 | 11년 전 | 2062 | ||
| 7392 | 11년 전 | 843 | ||
| 7391 |
잘살아보자
|
11년 전 | 5358 | |
| 7390 |
잘살아보자
|
11년 전 | 2223 | |
| 7389 |
잘살아보자
|
11년 전 | 3317 | |
| 7388 |
파랑새1597
|
11년 전 | 926 | |
| 7387 | 11년 전 | 1103 | ||
| 7386 |
프리랜서퍼블리셔
|
11년 전 | 971 | |
| 7385 | 11년 전 | 1567 | ||
| 7384 |
울라라라우
|
11년 전 | 888 | |
| 7383 | 11년 전 | 1548 | ||
| 7382 |
잘살아보자
|
11년 전 | 4223 | |
| 7381 |
잘살아보자
|
11년 전 | 1993 | |
| 7380 |
잘살아보자
|
11년 전 | 1943 | |
| 7379 |
잘살아보자
|
11년 전 | 5896 | |
| 7378 |
senseme
|
11년 전 | 1894 | |
| 7377 |
잘살아보자
|
11년 전 | 2742 | |
| 7376 | 11년 전 | 2413 | ||
| 7375 |
잘살아보자
|
11년 전 | 1043 | |
| 7374 |
잘살아보자
|
11년 전 | 3154 | |
| 7373 |
잘살아보자
|
11년 전 | 2477 | |
| 7372 |
잘살아보자
|
11년 전 | 5829 | |
| 7371 |
잘살아보자
|
11년 전 | 3461 | |
| 7370 |
잘살아보자
|
11년 전 | 1907 | |
| 7369 |
잘살아보자
|
11년 전 | 2167 | |
| 7368 |
ksdhtm56
|
11년 전 | 558 | |
| 7367 | 11년 전 | 1430 | ||
| 7366 | 11년 전 | 928 | ||
| 7365 | 11년 전 | 3535 | ||
| 7364 |
잘살아보자
|
11년 전 | 1385 | |
| 7363 |
잘살아보자
|
11년 전 | 1363 | |
| 7362 |
잘살아보자
|
11년 전 | 1498 | |
| 7361 | 11년 전 | 3590 | ||
| 7360 | 11년 전 | 3556 | ||
| 7359 | 11년 전 | 3373 | ||
| 7358 |
멋진남자임
|
11년 전 | 1021 | |
| 7357 | 11년 전 | 3412 | ||
| 7356 | 11년 전 | 2596 | ||
| 7355 | 11년 전 | 3184 | ||
| 7354 |
파랑새1597
|
11년 전 | 644 | |
| 7353 |
잘살아보자
|
11년 전 | 2425 | |
| 7352 |
잘살아보자
|
11년 전 | 2409 | |
| 7351 |
잘살아보자
|
11년 전 | 2472 | |
| 7350 |
잘살아보자
|
11년 전 | 1466 | |
| 7349 |
잘살아보자
|
11년 전 | 1962 | |
| 7348 |
잘살아보자
|
11년 전 | 1281 | |
| 7347 |
잘살아보자
|
11년 전 | 1078 | |
| 7346 |
멋진남자임
|
11년 전 | 1644 | |
| 7345 | 11년 전 | 985 | ||
| 7344 | 11년 전 | 3868 | ||
| 7343 | 11년 전 | 3648 | ||
| 7342 | 11년 전 | 1274 | ||
| 7341 | 11년 전 | 2513 | ||
| 7340 |
|
11년 전 | 931 | |
| 7339 | 11년 전 | 1732 | ||
| 7338 | 11년 전 | 3342 | ||
| 7337 | 11년 전 | 3655 | ||
| 7336 | 11년 전 | 4589 | ||
| 7335 | 11년 전 | 971 | ||
| 7334 | 11년 전 | 1527 | ||
| 7333 | 11년 전 | 2932 | ||
| 7332 |
|
11년 전 | 1102 | |
| 7331 |
KeePin뽁이
|
11년 전 | 1099 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기