<?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);
?>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7930 | 9년 전 | 467 | ||
| 7929 | 9년 전 | 406 | ||
| 7928 | 9년 전 | 479 | ||
| 7927 | 9년 전 | 382 | ||
| 7926 | 9년 전 | 693 | ||
| 7925 | 9년 전 | 415 | ||
| 7924 | 9년 전 | 401 | ||
| 7923 | 9년 전 | 387 | ||
| 7922 | 9년 전 | 417 | ||
| 7921 | 9년 전 | 434 | ||
| 7920 | 9년 전 | 344 | ||
| 7919 | 9년 전 | 354 | ||
| 7918 | 9년 전 | 508 | ||
| 7917 | 9년 전 | 363 | ||
| 7916 | 9년 전 | 450 | ||
| 7915 | 9년 전 | 460 | ||
| 7914 | 9년 전 | 472 | ||
| 7913 | 9년 전 | 648 | ||
| 7912 | 9년 전 | 476 | ||
| 7911 | 9년 전 | 401 | ||
| 7910 | 9년 전 | 458 | ||
| 7909 | 9년 전 | 567 | ||
| 7908 | 9년 전 | 507 | ||
| 7907 | 9년 전 | 434 | ||
| 7906 | 9년 전 | 458 | ||
| 7905 | 9년 전 | 433 | ||
| 7904 | 9년 전 | 417 | ||
| 7903 | 9년 전 | 427 | ||
| 7902 | 9년 전 | 598 | ||
| 7901 |
|
9년 전 | 770 | |
| 7900 | 9년 전 | 662 | ||
| 7899 | 9년 전 | 441 | ||
| 7898 | 9년 전 | 441 | ||
| 7897 | 9년 전 | 402 | ||
| 7896 | 9년 전 | 415 | ||
| 7895 | 9년 전 | 535 | ||
| 7894 | 9년 전 | 439 | ||
| 7893 | 9년 전 | 424 | ||
| 7892 | 9년 전 | 458 | ||
| 7891 | 9년 전 | 815 | ||
| 7890 | 9년 전 | 1233 | ||
| 7889 | 9년 전 | 770 | ||
| 7888 |
limsy1987
|
9년 전 | 579 | |
| 7887 | 9년 전 | 631 | ||
| 7886 | 9년 전 | 515 | ||
| 7885 | 9년 전 | 486 | ||
| 7884 | 9년 전 | 472 | ||
| 7883 | 9년 전 | 489 | ||
| 7882 | 9년 전 | 544 | ||
| 7881 | 9년 전 | 521 | ||
| 7880 | 9년 전 | 633 | ||
| 7879 | 9년 전 | 520 | ||
| 7878 | 9년 전 | 1296 | ||
| 7877 | 9년 전 | 816 | ||
| 7876 | 9년 전 | 563 | ||
| 7875 | 9년 전 | 632 | ||
| 7874 |
|
9년 전 | 833 | |
| 7873 | 9년 전 | 555 | ||
| 7872 | 9년 전 | 728 | ||
| 7871 | 9년 전 | 544 | ||
| 7870 | 9년 전 | 660 | ||
| 7869 | 9년 전 | 476 | ||
| 7868 | 9년 전 | 519 | ||
| 7867 | 9년 전 | 526 | ||
| 7866 | 9년 전 | 581 | ||
| 7865 | 9년 전 | 527 | ||
| 7864 | 10년 전 | 582 | ||
| 7863 | 10년 전 | 575 | ||
| 7862 | 10년 전 | 534 | ||
| 7861 | 10년 전 | 703 | ||
| 7860 | 10년 전 | 682 | ||
| 7859 | 10년 전 | 453 | ||
| 7858 | 10년 전 | 773 | ||
| 7857 | 10년 전 | 1157 | ||
| 7856 | 10년 전 | 580 | ||
| 7855 | 10년 전 | 820 | ||
| 7854 | 10년 전 | 756 | ||
| 7853 | 10년 전 | 655 | ||
| 7852 | 10년 전 | 573 | ||
| 7851 | 10년 전 | 583 | ||
| 7850 | 10년 전 | 648 | ||
| 7849 | 10년 전 | 413 | ||
| 7848 | 10년 전 | 475 | ||
| 7847 | 10년 전 | 730 | ||
| 7846 | 10년 전 | 503 | ||
| 7845 | 10년 전 | 488 | ||
| 7844 | 10년 전 | 443 | ||
| 7843 | 10년 전 | 487 | ||
| 7842 | 10년 전 | 466 | ||
| 7841 | 10년 전 | 432 | ||
| 7840 | 10년 전 | 450 | ||
| 7839 | 10년 전 | 512 | ||
| 7838 | 10년 전 | 557 | ||
| 7837 | 10년 전 | 392 | ||
| 7836 | 10년 전 | 446 | ||
| 7835 | 10년 전 | 529 | ||
| 7834 |
|
10년 전 | 1229 | |
| 7833 | 10년 전 | 496 | ||
| 7832 | 10년 전 | 468 | ||
| 7831 | 10년 전 | 633 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기