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

· 10년 전 · 1202

<?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,442
10년 전 조회 1,260
10년 전 조회 1,493
10년 전 조회 1,307
10년 전 조회 1,317
10년 전 조회 1,415
10년 전 조회 1,345
10년 전 조회 1,358
10년 전 조회 1,281
10년 전 조회 1,696
10년 전 조회 1,737
10년 전 조회 1,714
10년 전 조회 1,645
10년 전 조회 1,442
10년 전 조회 1,580
10년 전 조회 1,723
10년 전 조회 1,409
10년 전 조회 1,717
10년 전 조회 1,694
10년 전 조회 2,072
10년 전 조회 1,666
10년 전 조회 1,894
10년 전 조회 1,521
10년 전 조회 1,639
10년 전 조회 1,368
10년 전 조회 1,424
10년 전 조회 1,495
10년 전 조회 1,493
10년 전 조회 1,625
10년 전 조회 1,399
10년 전 조회 1,429
10년 전 조회 1,384
10년 전 조회 1,344
10년 전 조회 1,405
10년 전 조회 1,236
10년 전 조회 1,285
10년 전 조회 1,196
10년 전 조회 1,337
10년 전 조회 1,285
10년 전 조회 1,763
10년 전 조회 1,241
10년 전 조회 1,208
10년 전 조회 1,452
10년 전 조회 1,265
10년 전 조회 1,230
10년 전 조회 1,240
10년 전 조회 1,185
10년 전 조회 1,112
10년 전 조회 1,110
10년 전 조회 1,203
10년 전 조회 1,205
10년 전 조회 1,129
10년 전 조회 1,023
10년 전 조회 1,111
10년 전 조회 1,078
10년 전 조회 1,106
10년 전 조회 1,159
10년 전 조회 1,152
10년 전 조회 1,096
10년 전 조회 1,112
10년 전 조회 1,160
10년 전 조회 1,117
10년 전 조회 1,195
10년 전 조회 1,131
10년 전 조회 1,064
10년 전 조회 1,049
10년 전 조회 1,064
10년 전 조회 1,044
10년 전 조회 1,074
10년 전 조회 1,101
10년 전 조회 1,052
10년 전 조회 1,126
10년 전 조회 1,056
10년 전 조회 1,167
10년 전 조회 1,247
10년 전 조회 1,208
10년 전 조회 1,159
10년 전 조회 1,073
10년 전 조회 1,188
10년 전 조회 1,101
10년 전 조회 1,137
10년 전 조회 1,079
10년 전 조회 1,060
10년 전 조회 1,061
10년 전 조회 1,086
10년 전 조회 1,186
10년 전 조회 1,124
10년 전 조회 1,210
10년 전 조회 1,096
10년 전 조회 1,121
10년 전 조회 1,112
10년 전 조회 1,175
10년 전 조회 1,266
10년 전 조회 1,345
10년 전 조회 1,140
10년 전 조회 1,217
10년 전 조회 1,100
10년 전 조회 1,019
10년 전 조회 1,075
10년 전 조회 1,212