<?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);
?>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8030 | 9년 전 | 347 | ||
| 8029 | 9년 전 | 282 | ||
| 8028 | 9년 전 | 251 | ||
| 8027 | 9년 전 | 262 | ||
| 8026 | 9년 전 | 303 | ||
| 8025 | 9년 전 | 365 | ||
| 8024 | 9년 전 | 325 | ||
| 8023 | 9년 전 | 378 | ||
| 8022 | 9년 전 | 305 | ||
| 8021 | 9년 전 | 308 | ||
| 8020 | 9년 전 | 304 | ||
| 8019 | 9년 전 | 327 | ||
| 8018 | 9년 전 | 429 | ||
| 8017 | 9년 전 | 525 | ||
| 8016 | 9년 전 | 315 | ||
| 8015 | 9년 전 | 380 | ||
| 8014 | 9년 전 | 311 | ||
| 8013 | 9년 전 | 224 | ||
| 8012 | 9년 전 | 236 | ||
| 8011 | 9년 전 | 435 | ||
| 8010 | 9년 전 | 287 | ||
| 8009 | 9년 전 | 273 | ||
| 8008 | 9년 전 | 274 | ||
| 8007 | 9년 전 | 417 | ||
| 8006 | 9년 전 | 454 | ||
| 8005 |
|
9년 전 | 954 | |
| 8004 | 9년 전 | 336 | ||
| 8003 | 9년 전 | 408 | ||
| 8002 | 9년 전 | 315 | ||
| 8001 |
|
9년 전 | 654 | |
| 8000 | 9년 전 | 399 | ||
| 7999 | 9년 전 | 361 | ||
| 7998 | 9년 전 | 413 | ||
| 7997 | 9년 전 | 303 | ||
| 7996 | 9년 전 | 528 | ||
| 7995 | 9년 전 | 437 | ||
| 7994 | 9년 전 | 278 | ||
| 7993 | 9년 전 | 360 | ||
| 7992 | 9년 전 | 498 | ||
| 7991 | 9년 전 | 233 | ||
| 7990 | 9년 전 | 260 | ||
| 7989 | 9년 전 | 290 | ||
| 7988 | 9년 전 | 713 | ||
| 7987 | 9년 전 | 409 | ||
| 7986 | 9년 전 | 397 | ||
| 7985 | 9년 전 | 492 | ||
| 7984 | 9년 전 | 420 | ||
| 7983 | 9년 전 | 638 | ||
| 7982 | 9년 전 | 500 | ||
| 7981 | 9년 전 | 446 | ||
| 7980 | 9년 전 | 473 | ||
| 7979 | 9년 전 | 448 | ||
| 7978 | 9년 전 | 424 | ||
| 7977 | 9년 전 | 363 | ||
| 7976 | 9년 전 | 834 | ||
| 7975 | 9년 전 | 352 | ||
| 7974 | 9년 전 | 378 | ||
| 7973 | 9년 전 | 583 | ||
| 7972 | 9년 전 | 369 | ||
| 7971 | 9년 전 | 439 | ||
| 7970 | 9년 전 | 284 | ||
| 7969 | 9년 전 | 529 | ||
| 7968 | 9년 전 | 369 | ||
| 7967 | 9년 전 | 350 | ||
| 7966 | 9년 전 | 353 | ||
| 7965 |
|
9년 전 | 1002 | |
| 7964 | 9년 전 | 389 | ||
| 7963 | 9년 전 | 372 | ||
| 7962 | 9년 전 | 358 | ||
| 7961 |
전갈자리남자
|
9년 전 | 497 | |
| 7960 | 9년 전 | 947 | ||
| 7959 | 9년 전 | 539 | ||
| 7958 | 9년 전 | 394 | ||
| 7957 | 9년 전 | 356 | ||
| 7956 | 9년 전 | 362 | ||
| 7955 | 9년 전 | 430 | ||
| 7954 | 9년 전 | 353 | ||
| 7953 | 9년 전 | 414 | ||
| 7952 | 9년 전 | 339 | ||
| 7951 | 9년 전 | 486 | ||
| 7950 | 9년 전 | 370 | ||
| 7949 | 9년 전 | 378 | ||
| 7948 | 9년 전 | 313 | ||
| 7947 | 9년 전 | 915 | ||
| 7946 | 9년 전 | 409 | ||
| 7945 | 9년 전 | 377 | ||
| 7944 | 9년 전 | 385 | ||
| 7943 | 9년 전 | 356 | ||
| 7942 | 9년 전 | 392 | ||
| 7941 | 9년 전 | 379 | ||
| 7940 | 9년 전 | 866 | ||
| 7939 | 9년 전 | 317 | ||
| 7938 | 9년 전 | 361 | ||
| 7937 | 9년 전 | 262 | ||
| 7936 | 9년 전 | 866 | ||
| 7935 | 9년 전 | 423 | ||
| 7934 | 9년 전 | 390 | ||
| 7933 | 9년 전 | 466 | ||
| 7932 | 9년 전 | 448 | ||
| 7931 | 9년 전 | 503 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기