[알고리즘]힙 정렬(Heap Sort)

· 10년 전 · 1395

<?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);

?>


|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
10년 전 조회 1,590
10년 전 조회 1,407
10년 전 조회 1,627
10년 전 조회 1,426
10년 전 조회 1,472
10년 전 조회 1,578
10년 전 조회 1,485
10년 전 조회 1,516
10년 전 조회 1,444
10년 전 조회 1,855
10년 전 조회 1,883
10년 전 조회 1,860
10년 전 조회 1,828
10년 전 조회 1,603
10년 전 조회 1,730
10년 전 조회 1,899
10년 전 조회 1,606
10년 전 조회 1,881
10년 전 조회 1,861
10년 전 조회 2,237
10년 전 조회 1,844
10년 전 조회 2,052
10년 전 조회 1,684
10년 전 조회 1,830
10년 전 조회 1,534
10년 전 조회 1,603
10년 전 조회 1,653
10년 전 조회 1,640
10년 전 조회 1,809
10년 전 조회 1,578
10년 전 조회 1,602
10년 전 조회 1,614
10년 전 조회 1,520
10년 전 조회 1,581
10년 전 조회 1,392
10년 전 조회 1,470
10년 전 조회 1,376
10년 전 조회 1,537
10년 전 조회 1,476
10년 전 조회 1,947
10년 전 조회 1,414
10년 전 조회 1,387
10년 전 조회 1,643
10년 전 조회 1,445
10년 전 조회 1,420
10년 전 조회 1,422
10년 전 조회 1,368
10년 전 조회 1,304
10년 전 조회 1,279
10년 전 조회 1,396
10년 전 조회 1,362
10년 전 조회 1,319
10년 전 조회 1,204
10년 전 조회 1,290
10년 전 조회 1,277
10년 전 조회 1,299
10년 전 조회 1,349
10년 전 조회 1,341
10년 전 조회 1,295
10년 전 조회 1,291
10년 전 조회 1,326
10년 전 조회 1,309
10년 전 조회 1,386
10년 전 조회 1,301
10년 전 조회 1,250
10년 전 조회 1,231
10년 전 조회 1,255
10년 전 조회 1,259
10년 전 조회 1,260
10년 전 조회 1,275
10년 전 조회 1,230
10년 전 조회 1,294
10년 전 조회 1,224
10년 전 조회 1,324
10년 전 조회 1,414
10년 전 조회 1,382
10년 전 조회 1,320
10년 전 조회 1,242
10년 전 조회 1,365
10년 전 조회 1,263
10년 전 조회 1,306
10년 전 조회 1,254
10년 전 조회 1,220
10년 전 조회 1,217
10년 전 조회 1,239
10년 전 조회 1,319
10년 전 조회 1,273
10년 전 조회 1,348
10년 전 조회 1,257
10년 전 조회 1,300
10년 전 조회 1,285
10년 전 조회 1,345
10년 전 조회 1,429
10년 전 조회 1,499
10년 전 조회 1,294
10년 전 조회 1,359
10년 전 조회 1,245
10년 전 조회 1,173
10년 전 조회 1,222
10년 전 조회 1,343