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

· 10년 전 · 1264

<?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,509
10년 전 조회 1,332
10년 전 조회 1,551
10년 전 조회 1,364
10년 전 조회 1,393
10년 전 조회 1,498
10년 전 조회 1,397
10년 전 조회 1,429
10년 전 조회 1,358
10년 전 조회 1,770
10년 전 조회 1,805
10년 전 조회 1,765
10년 전 조회 1,727
10년 전 조회 1,508
10년 전 조회 1,643
10년 전 조회 1,795
10년 전 조회 1,502
10년 전 조회 1,803
10년 전 조회 1,760
10년 전 조회 2,146
10년 전 조회 1,754
10년 전 조회 1,959
10년 전 조회 1,584
10년 전 조회 1,717
10년 전 조회 1,438
10년 전 조회 1,498
10년 전 조회 1,561
10년 전 조회 1,555
10년 전 조회 1,702
10년 전 조회 1,471
10년 전 조회 1,502
10년 전 조회 1,469
10년 전 조회 1,411
10년 전 조회 1,475
10년 전 조회 1,290
10년 전 조회 1,359
10년 전 조회 1,269
10년 전 조회 1,406
10년 전 조회 1,355
10년 전 조회 1,831
10년 전 조회 1,305
10년 전 조회 1,276
10년 전 조회 1,531
10년 전 조회 1,342
10년 전 조회 1,310
10년 전 조회 1,319
10년 전 조회 1,257
10년 전 조회 1,189
10년 전 조회 1,175
10년 전 조회 1,265
10년 전 조회 1,260
10년 전 조회 1,194
10년 전 조회 1,092
10년 전 조회 1,179
10년 전 조회 1,149
10년 전 조회 1,173
10년 전 조회 1,228
10년 전 조회 1,229
10년 전 조회 1,167
10년 전 조회 1,173
10년 전 조회 1,218
10년 전 조회 1,187
10년 전 조회 1,260
10년 전 조회 1,185
10년 전 조회 1,134
10년 전 조회 1,114
10년 전 조회 1,135
10년 전 조회 1,115
10년 전 조회 1,141
10년 전 조회 1,160
10년 전 조회 1,128
10년 전 조회 1,180
10년 전 조회 1,124
10년 전 조회 1,213
10년 전 조회 1,308
10년 전 조회 1,275
10년 전 조회 1,217
10년 전 조회 1,143
10년 전 조회 1,251
10년 전 조회 1,169
10년 전 조회 1,186
10년 전 조회 1,143
10년 전 조회 1,123
10년 전 조회 1,122
10년 전 조회 1,143
10년 전 조회 1,232
10년 전 조회 1,182
10년 전 조회 1,261
10년 전 조회 1,154
10년 전 조회 1,189
10년 전 조회 1,171
10년 전 조회 1,232
10년 전 조회 1,327
10년 전 조회 1,411
10년 전 조회 1,204
10년 전 조회 1,266
10년 전 조회 1,154
10년 전 조회 1,069
10년 전 조회 1,125
10년 전 조회 1,264