링크
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);
?>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 330 |
prosper
|
20년 전 | 2263 | |
| 329 |
prosper
|
20년 전 | 1884 | |
| 328 |
prosper
|
20년 전 | 1690 | |
| 327 | 20년 전 | 3755 | ||
| 326 | 20년 전 | 4845 | ||
| 325 |
hwatta
|
20년 전 | 2470 | |
| 324 |
|
20년 전 | 3137 | |
| 323 | 20년 전 | 5849 | ||
| 322 |
hwatta
|
20년 전 | 2838 | |
| 321 |
hwatta
|
20년 전 | 2311 | |
| 320 |
yesmoa
|
20년 전 | 4566 | |
| 319 | 20년 전 | 2678 | ||
| 318 | 20년 전 | 2233 | ||
| 317 |
kyodon
|
20년 전 | 2756 | |
| 316 | 20년 전 | 2571 | ||
| 315 |
|
20년 전 | 2879 | |
| 314 |
|
20년 전 | 3335 | |
| 313 |
|
20년 전 | 2636 | |
| 312 |
yesmoa
|
20년 전 | 4708 | |
| 311 | 20년 전 | 3263 | ||
| 310 |
홀로남은자
|
20년 전 | 4557 | |
| 309 | 20년 전 | 3003 | ||
| 308 | 20년 전 | 4123 | ||
| 307 | 20년 전 | 4366 | ||
| 306 | 20년 전 | 7029 | ||
| 305 | 20년 전 | 3867 | ||
| 304 | 20년 전 | 2761 | ||
| 303 |
크리스탈처럼
|
20년 전 | 4393 | |
| 302 | 20년 전 | 2202 | ||
| 301 |
|
20년 전 | 4316 | |
| 300 | 20년 전 | 3798 | ||
| 299 | 20년 전 | 2606 | ||
| 298 | 20년 전 | 4820 | ||
| 297 |
|
20년 전 | 2523 | |
| 296 | 20년 전 | 4522 | ||
| 295 | 20년 전 | 3565 | ||
| 294 | 20년 전 | 3590 | ||
| 293 | 20년 전 | 3814 | ||
| 292 | 20년 전 | 3202 | ||
| 291 |
yesmoa
|
20년 전 | 5936 | |
| 290 | 20년 전 | 2934 | ||
| 289 | 20년 전 | 5845 | ||
| 288 |
|
20년 전 | 2373 | |
| 287 |
|
20년 전 | 1794 | |
| 286 |
|
20년 전 | 2145 | |
| 285 |
|
20년 전 | 3530 | |
| 284 |
|
20년 전 | 2029 | |
| 283 |
|
20년 전 | 4399 | |
| 282 | 20년 전 | 3381 | ||
| 281 |
|
20년 전 | 2208 | |
| 280 |
|
20년 전 | 7801 | |
| 279 | 20년 전 | 5550 | ||
| 278 | 20년 전 | 2990 | ||
| 277 |
|
20년 전 | 5568 | |
| 276 | 20년 전 | 2355 | ||
| 275 | 20년 전 | 2602 | ||
| 274 | 20년 전 | 2380 | ||
| 273 | 20년 전 | 2215 | ||
| 272 | 20년 전 | 2146 | ||
| 271 | 20년 전 | 2599 | ||
| 270 | 20년 전 | 2628 | ||
| 269 | 20년 전 | 2481 | ||
| 268 | 20년 전 | 2679 | ||
| 267 | 20년 전 | 2363 | ||
| 266 | 20년 전 | 2561 | ||
| 265 | 20년 전 | 3502 | ||
| 264 |
|
20년 전 | 5358 | |
| 263 |
|
20년 전 | 3724 | |
| 262 | 20년 전 | 3177 | ||
| 261 |
허저비
|
20년 전 | 5926 | |
| 260 |
|
20년 전 | 5712 | |
| 259 | 20년 전 | 4138 | ||
| 258 | 20년 전 | 2375 | ||
| 257 | 20년 전 | 3191 | ||
| 256 | 20년 전 | 1897 | ||
| 255 | 20년 전 | 1567 | ||
| 254 | 20년 전 | 3141 | ||
| 253 | 20년 전 | 3545 | ||
| 252 | 20년 전 | 5122 | ||
| 251 | 20년 전 | 5805 | ||
| 250 | 20년 전 | 3674 | ||
| 249 | 20년 전 | 5012 | ||
| 248 | 20년 전 | 3283 | ||
| 247 | 20년 전 | 3638 | ||
| 246 |
|
20년 전 | 7949 | |
| 245 |
|
20년 전 | 5906 | |
| 244 | 20년 전 | 4487 | ||
| 243 |
|
20년 전 | 4052 | |
| 242 | 20년 전 | 2783 | ||
| 241 | 20년 전 | 2727 | ||
| 240 | 20년 전 | 2363 | ||
| 239 | 20년 전 | 1660 | ||
| 238 |
아우겐나이스
|
20년 전 | 2263 | |
| 237 |
email
|
20년 전 | 3686 | |
| 236 | 20년 전 | 4154 | ||
| 235 | 20년 전 | 10461 | ||
| 234 | 20년 전 | 5068 | ||
| 233 | 20년 전 | 3370 | ||
| 232 | 20년 전 | 3208 | ||
| 231 | 20년 전 | 3840 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기