[알고리즘]힙 정렬(Heap Sort)
<?php
class Heap {
var $numOfData;
var $heapArr = array();
var $comp;
function __construct($pc) { // 힙의 초기화
$this->numOfData = 0;
$this->comp = $pc;
}
function HIsEmpty() { // 힙이 비었는지 확인
if ($this->numOfData == 0)
return TRUE;
else
return FALSE;
}
function GetParentIDX($idx) { // 부모 노드의 인덱스 값 반환
return floor($idx/2);
}
function GetLChildIDX($idx) { // 왼쪽 자식 노드의 인덱스 값 반환
return $idx*2;
}
function GetRChildIDX($idx) { // 오른쪽 자식 노드의 인덱스 값 반환
return $this->GetLChildIDX($idx)+1;
}
// 두 개의 자식 노드중 높은 우선 순위의 자식 노드 인덱스 값 반환
function GetHiPriChildIDX($idx) {
if ($this->GetLChildIDX($idx) > $this->numOfData)
return 0;
else if ($this->GetLChildIDX($idx) == $this->numOfData)
return $this->GetLChildIDX($idx);
else
{
$comp = $this->comp;
if ($comp($this->heapArr[$this->GetLChildIDX($idx)],
$this->heapArr[$this->GetRChildIDX($idx)]) < 0)
return $this->GetRChildIDX($idx);
else
return $this->GetLChildIDX($idx);
}
}
// 힙에 데이터 저장
function HInsert($data) {
$idx = $this->numOfData+1;
$comp = $this->comp;
while ($idx != 1) {
if($comp($data, $this->heapArr[$this->GetParentIDX($idx)]) > 0) {
$this->heapArr[$idx] = $this->heapArr[$this->GetParentIDX($idx)];
$idx = $this->GetParentIDX($idx);
}
else
break;
}
$this->heapArr[$idx] = $data;
$this->numOfData += 1;
}
// 힙에서 데이터 삭제
function HDelete() {
$retData = $this->heapArr[1];
$lastElem = $this->heapArr[$this->numOfData];
$parentIdx = 1;
$childIdx;
$comp = $this->comp;
while ($childIdx = $this->GetHiPriChildIDX($parentIdx)) {
if ($comp($lastElem, $this->heapArr[$childIdx]) >= 0)
break;
$this->heapArr[$parentIdx] = $this->heapArr[$childIdx];
$parentIdx = $childIdx;
}
$this->heapArr[$parentIdx] = $lastElem;
$this->numOfData -= 1;
return $retData;
}
}
$arr = array(3, 4, 2, 1);
// 오름차순
function PriorityComp($d1, $d2) {
return $d2 - $d1;
}
$heap = new Heap(PriorityComp);
foreach ($arr as $val)
$heap->HInsert($val);
foreach ($arr as $k => $v)
$arr[$k] = $heap->Hdelete();
print_r($arr);
?>
게시판 목록
토크
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 3331 | 10년 전 | 1999 | ||
| 3330 | 10년 전 | 2024 | ||
| 3329 | 10년 전 | 1492 | ||
| 3328 | 10년 전 | 1327 | ||
| 3327 |
mashmellow
|
10년 전 | 1956 | |
| 3326 | 10년 전 | 2561 | ||
| 3325 |
mixx애교
|
10년 전 | 1658 | |
| 3324 |
바람돌이팡
|
10년 전 | 1656 | |
| 3323 |
밥먹고합시다
|
10년 전 | 1481 | |
| 3322 |
플라이SINJI
|
10년 전 | 2979 | |
| 3321 |
개발짜증나
|
10년 전 | 2164 | |
| 3320 | 10년 전 | 1076 | ||
| 3319 | 10년 전 | 2761 | ||
| 3318 | 10년 전 | 2469 | ||
| 3317 |
개발짜증나
|
10년 전 | 1085 | |
| 3316 |
개발짜증나
|
10년 전 | 2313 | |
| 3315 | 10년 전 | 1692 | ||
| 3314 | 10년 전 | 1771 | ||
| 3313 |
mwdkim
|
10년 전 | 1784 | |
| 3312 |
mwdkim
|
10년 전 | 4702 | |
| 3311 | 10년 전 | 2399 | ||
| 3310 |
|
10년 전 | 1831 | |
| 3309 |
SeungYeon
|
10년 전 | 1679 | |
| 3308 |
아리마2001
|
10년 전 | 1480 | |
| 3307 |
|
10년 전 | 1247 | |
| 3306 | 10년 전 | 2004 | ||
| 3305 |
hyohyojj1234
|
10년 전 | 3097 | |
| 3304 |
ehdltdoit
|
10년 전 | 2391 | |
| 3303 | 10년 전 | 3283 | ||
| 3302 |
ILMare1003
|
10년 전 | 1872 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기