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

· 10년 전 · 1193

<?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,434
10년 전 조회 1,255
10년 전 조회 1,485
10년 전 조회 1,298
10년 전 조회 1,313
10년 전 조회 1,405
10년 전 조회 1,338
10년 전 조회 1,351
10년 전 조회 1,278
10년 전 조회 1,687
10년 전 조회 1,731
10년 전 조회 1,704
10년 전 조회 1,636
10년 전 조회 1,431
10년 전 조회 1,574
10년 전 조회 1,717
10년 전 조회 1,404
10년 전 조회 1,714
10년 전 조회 1,683
10년 전 조회 2,061
10년 전 조회 1,656
10년 전 조회 1,883
10년 전 조회 1,512
10년 전 조회 1,633
10년 전 조회 1,364
10년 전 조회 1,416
10년 전 조회 1,488
10년 전 조회 1,486
10년 전 조회 1,615
10년 전 조회 1,395
10년 전 조회 1,423
10년 전 조회 1,377
10년 전 조회 1,341
10년 전 조회 1,396
10년 전 조회 1,233
10년 전 조회 1,279
10년 전 조회 1,193
10년 전 조회 1,330
10년 전 조회 1,276
10년 전 조회 1,752
10년 전 조회 1,236
10년 전 조회 1,197
10년 전 조회 1,449
10년 전 조회 1,256
10년 전 조회 1,221
10년 전 조회 1,236
10년 전 조회 1,178
10년 전 조회 1,107
10년 전 조회 1,107
10년 전 조회 1,194
10년 전 조회 1,198
10년 전 조회 1,122
10년 전 조회 1,017
10년 전 조회 1,104
10년 전 조회 1,071
10년 전 조회 1,102
10년 전 조회 1,151
10년 전 조회 1,145
10년 전 조회 1,091
10년 전 조회 1,100
10년 전 조회 1,155
10년 전 조회 1,108
10년 전 조회 1,185
10년 전 조회 1,127
10년 전 조회 1,059
10년 전 조회 1,037
10년 전 조회 1,059
10년 전 조회 1,035
10년 전 조회 1,067
10년 전 조회 1,097
10년 전 조회 1,044
10년 전 조회 1,118
10년 전 조회 1,050
10년 전 조회 1,162
10년 전 조회 1,245
10년 전 조회 1,202
10년 전 조회 1,154
10년 전 조회 1,070
10년 전 조회 1,181
10년 전 조회 1,096
10년 전 조회 1,132
10년 전 조회 1,074
10년 전 조회 1,054
10년 전 조회 1,057
10년 전 조회 1,078
10년 전 조회 1,180
10년 전 조회 1,118
10년 전 조회 1,203
10년 전 조회 1,088
10년 전 조회 1,114
10년 전 조회 1,109
10년 전 조회 1,170
10년 전 조회 1,257
10년 전 조회 1,336
10년 전 조회 1,132
10년 전 조회 1,207
10년 전 조회 1,097
10년 전 조회 1,015
10년 전 조회 1,070
10년 전 조회 1,201