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

· 10년 전 · 1164

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

?>


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

프로그램

+
제목 글쓴이 날짜 조회
9년 전 조회 1,407
9년 전 조회 1,233
9년 전 조회 1,460
9년 전 조회 1,277
9년 전 조회 1,281
9년 전 조회 1,375
10년 전 조회 1,305
10년 전 조회 1,329
10년 전 조회 1,246
10년 전 조회 1,656
10년 전 조회 1,706
10년 전 조회 1,676
10년 전 조회 1,612
10년 전 조회 1,401
10년 전 조회 1,544
10년 전 조회 1,684
10년 전 조회 1,372
10년 전 조회 1,684
10년 전 조회 1,657
10년 전 조회 2,024
10년 전 조회 1,630
10년 전 조회 1,848
10년 전 조회 1,480
10년 전 조회 1,601
10년 전 조회 1,332
10년 전 조회 1,386
10년 전 조회 1,457
10년 전 조회 1,450
10년 전 조회 1,586
10년 전 조회 1,368
10년 전 조회 1,400
10년 전 조회 1,352
10년 전 조회 1,320
10년 전 조회 1,363
10년 전 조회 1,208
10년 전 조회 1,252
10년 전 조회 1,174
10년 전 조회 1,299
10년 전 조회 1,252
10년 전 조회 1,729
10년 전 조회 1,213
10년 전 조회 1,175
10년 전 조회 1,421
10년 전 조회 1,229
10년 전 조회 1,201
10년 전 조회 1,207
10년 전 조회 1,160
10년 전 조회 1,096
10년 전 조회 1,078
10년 전 조회 1,165
10년 전 조회 1,173
10년 전 조회 1,100
10년 전 조회 998
10년 전 조회 1,079
10년 전 조회 1,052
10년 전 조회 1,086
10년 전 조회 1,126
10년 전 조회 1,118
10년 전 조회 1,069
10년 전 조회 1,077
10년 전 조회 1,134
10년 전 조회 1,083
10년 전 조회 1,167
10년 전 조회 1,104
10년 전 조회 1,040
10년 전 조회 1,012
10년 전 조회 1,042
10년 전 조회 998
10년 전 조회 1,042
10년 전 조회 1,074
10년 전 조회 1,023
10년 전 조회 1,090
10년 전 조회 1,036
10년 전 조회 1,125
10년 전 조회 1,220
10년 전 조회 1,178
10년 전 조회 1,127
10년 전 조회 1,048
10년 전 조회 1,153
10년 전 조회 1,076
10년 전 조회 1,110
10년 전 조회 1,052
10년 전 조회 1,039
10년 전 조회 1,038
10년 전 조회 1,059
10년 전 조회 1,165
10년 전 조회 1,095
10년 전 조회 1,176
10년 전 조회 1,063
10년 전 조회 1,088
10년 전 조회 1,082
10년 전 조회 1,143
10년 전 조회 1,235
10년 전 조회 1,309
10년 전 조회 1,109
10년 전 조회 1,179
10년 전 조회 1,071
10년 전 조회 994
10년 전 조회 1,044
10년 전 조회 1,171