링크
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);
?>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7630 | 10년 전 | 668 | ||
| 7629 |
|
10년 전 | 2411 | |
| 7628 | 10년 전 | 800 | ||
| 7627 |
|
10년 전 | 1043 | |
| 7626 |
|
10년 전 | 1799 | |
| 7625 | 10년 전 | 725 | ||
| 7624 | 10년 전 | 743 | ||
| 7623 |
|
10년 전 | 3118 | |
| 7622 | 10년 전 | 746 | ||
| 7621 |
leeleeleelee
|
10년 전 | 595 | |
| 7620 | 10년 전 | 548 | ||
| 7619 | 10년 전 | 503 | ||
| 7618 | 10년 전 | 1041 | ||
| 7617 | 10년 전 | 733 | ||
| 7616 | 10년 전 | 667 | ||
| 7615 | 10년 전 | 735 | ||
| 7614 | 10년 전 | 1277 | ||
| 7613 |
|
10년 전 | 2090 | |
| 7612 | 10년 전 | 1169 | ||
| 7611 | 10년 전 | 1431 | ||
| 7610 |
|
10년 전 | 1910 | |
| 7609 |
|
10년 전 | 1364 | |
| 7608 |
mwdkim
|
10년 전 | 1143 | |
| 7607 |
|
10년 전 | 1072 | |
| 7606 |
mwdkim
|
10년 전 | 3949 | |
| 7605 | 10년 전 | 700 | ||
| 7604 | 10년 전 | 1038 | ||
| 7603 | 10년 전 | 1659 | ||
| 7602 |
|
10년 전 | 1088 | |
| 7601 |
AniNest
|
10년 전 | 2805 | |
| 7600 |
port443
|
10년 전 | 1046 | |
| 7599 | 10년 전 | 954 | ||
| 7598 | 10년 전 | 1036 | ||
| 7597 | 10년 전 | 4584 | ||
| 7596 |
SeungYeon
|
10년 전 | 905 | |
| 7595 |
untitled
|
10년 전 | 2445 | |
| 7594 |
프로그래머7
|
10년 전 | 1745 | |
| 7593 |
untitled
|
10년 전 | 2387 | |
| 7592 |
untitled
|
10년 전 | 1955 | |
| 7591 |
untitled
|
10년 전 | 2689 | |
| 7590 |
아리마2001
|
10년 전 | 863 | |
| 7589 | 10년 전 | 1118 | ||
| 7588 |
|
10년 전 | 2933 | |
| 7587 | 10년 전 | 1317 | ||
| 7586 | 10년 전 | 679 | ||
| 7585 | 10년 전 | 1713 | ||
| 7584 | 10년 전 | 1419 | ||
| 7583 |
leeleeleelee
|
10년 전 | 1181 | |
| 7582 |
|
10년 전 | 1142 | |
| 7581 | 10년 전 | 1368 | ||
| 7580 | 10년 전 | 1019 | ||
| 7579 |
|
10년 전 | 614 | |
| 7578 | 10년 전 | 1439 | ||
| 7577 |
|
10년 전 | 1883 | |
| 7576 | 10년 전 | 1396 | ||
| 7575 |
멋진남자임
|
10년 전 | 1478 | |
| 7574 | 10년 전 | 2131 | ||
| 7573 | 10년 전 | 3269 | ||
| 7572 | 10년 전 | 771 | ||
| 7571 |
|
10년 전 | 791 | |
| 7570 |
|
10년 전 | 1333 | |
| 7569 | 10년 전 | 1561 | ||
| 7568 |
this1mg
|
10년 전 | 1059 | |
| 7567 |
|
10년 전 | 775 | |
| 7566 | 10년 전 | 926 | ||
| 7565 |
Angel하늘
|
10년 전 | 1026 | |
| 7564 |
seoldi
|
10년 전 | 1270 | |
| 7563 |
|
10년 전 | 1407 | |
| 7562 |
멋진남자임
|
10년 전 | 2103 | |
| 7561 | 10년 전 | 723 | ||
| 7560 |
leeleeleelee
|
10년 전 | 922 | |
| 7559 | 10년 전 | 5064 | ||
| 7558 |
RinaP
|
10년 전 | 799 | |
| 7557 |
|
10년 전 | 1265 | |
| 7556 | 10년 전 | 1205 | ||
| 7555 |
hyohyojj1234
|
10년 전 | 1676 | |
| 7554 | 10년 전 | 1104 | ||
| 7553 |
senseme
|
10년 전 | 1348 | |
| 7552 |
ehdltdoit
|
10년 전 | 1449 | |
| 7551 |
|
10년 전 | 1840 | |
| 7550 |
leeleeleelee
|
10년 전 | 1606 | |
| 7549 | 10년 전 | 2443 | ||
| 7548 | 10년 전 | 1854 | ||
| 7547 |
멋진남자임
|
10년 전 | 1973 | |
| 7546 | 10년 전 | 1018 | ||
| 7545 |
ILMare1003
|
10년 전 | 1304 | |
| 7544 |
|
10년 전 | 1262 | |
| 7543 | 10년 전 | 898 | ||
| 7542 | 10년 전 | 676 | ||
| 7541 |
울라라라우
|
10년 전 | 874 | |
| 7540 | 10년 전 | 1605 | ||
| 7539 | 10년 전 | 949 | ||
| 7538 |
|
10년 전 | 1839 | |
| 7537 | 10년 전 | 3623 | ||
| 7536 |
Gaumi
|
10년 전 | 1427 | |
| 7535 |
프로그램은어려워
|
10년 전 | 1288 | |
| 7534 |
senseme
|
10년 전 | 1213 | |
| 7533 | 10년 전 | 1214 | ||
| 7532 | 10년 전 | 879 | ||
| 7531 | 10년 전 | 2068 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기