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

· 10년 전 · 1291

<?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,526
10년 전 조회 1,345
10년 전 조회 1,570
10년 전 조회 1,381
10년 전 조회 1,411
10년 전 조회 1,518
10년 전 조회 1,415
10년 전 조회 1,451
10년 전 조회 1,383
10년 전 조회 1,794
10년 전 조회 1,822
10년 전 조회 1,793
10년 전 조회 1,748
10년 전 조회 1,525
10년 전 조회 1,661
10년 전 조회 1,825
10년 전 조회 1,533
10년 전 조회 1,827
10년 전 조회 1,790
10년 전 조회 2,170
10년 전 조회 1,778
10년 전 조회 1,979
10년 전 조회 1,606
10년 전 조회 1,746
10년 전 조회 1,462
10년 전 조회 1,520
10년 전 조회 1,583
10년 전 조회 1,571
10년 전 조회 1,724
10년 전 조회 1,490
10년 전 조회 1,524
10년 전 조회 1,500
10년 전 조회 1,431
10년 전 조회 1,494
10년 전 조회 1,316
10년 전 조회 1,380
10년 전 조회 1,295
10년 전 조회 1,438
10년 전 조회 1,380
10년 전 조회 1,855
10년 전 조회 1,326
10년 전 조회 1,293
10년 전 조회 1,552
10년 전 조회 1,365
10년 전 조회 1,342
10년 전 조회 1,336
10년 전 조회 1,273
10년 전 조회 1,210
10년 전 조회 1,190
10년 전 조회 1,292
10년 전 조회 1,285
10년 전 조회 1,217
10년 전 조회 1,114
10년 전 조회 1,195
10년 전 조회 1,176
10년 전 조회 1,196
10년 전 조회 1,250
10년 전 조회 1,254
10년 전 조회 1,191
10년 전 조회 1,194
10년 전 조회 1,237
10년 전 조회 1,211
10년 전 조회 1,289
10년 전 조회 1,203
10년 전 조회 1,157
10년 전 조회 1,138
10년 전 조회 1,156
10년 전 조회 1,133
10년 전 조회 1,158
10년 전 조회 1,176
10년 전 조회 1,150
10년 전 조회 1,207
10년 전 조회 1,142
10년 전 조회 1,235
10년 전 조회 1,320
10년 전 조회 1,294
10년 전 조회 1,243
10년 전 조회 1,158
10년 전 조회 1,276
10년 전 조회 1,191
10년 전 조회 1,199
10년 전 조회 1,165
10년 전 조회 1,132
10년 전 조회 1,138
10년 전 조회 1,153
10년 전 조회 1,252
10년 전 조회 1,193
10년 전 조회 1,271
10년 전 조회 1,174
10년 전 조회 1,200
10년 전 조회 1,193
10년 전 조회 1,246
10년 전 조회 1,342
10년 전 조회 1,422
10년 전 조회 1,215
10년 전 조회 1,278
10년 전 조회 1,164
10년 전 조회 1,084
10년 전 조회 1,139
10년 전 조회 1,274