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

· 10년 전 · 1321

<?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,550
10년 전 조회 1,371
10년 전 조회 1,591
10년 전 조회 1,398
10년 전 조회 1,434
10년 전 조회 1,550
10년 전 조회 1,439
10년 전 조회 1,476
10년 전 조회 1,413
10년 전 조회 1,826
10년 전 조회 1,849
10년 전 조회 1,821
10년 전 조회 1,787
10년 전 조회 1,559
10년 전 조회 1,690
10년 전 조회 1,859
10년 전 조회 1,570
10년 전 조회 1,849
10년 전 조회 1,825
10년 전 조회 2,198
10년 전 조회 1,806
10년 전 조회 2,005
10년 전 조회 1,647
10년 전 조회 1,787
10년 전 조회 1,493
10년 전 조회 1,558
10년 전 조회 1,614
10년 전 조회 1,596
10년 전 조회 1,757
10년 전 조회 1,525
10년 전 조회 1,555
10년 전 조회 1,543
10년 전 조회 1,464
10년 전 조회 1,535
10년 전 조회 1,344
10년 전 조회 1,419
10년 전 조회 1,322
10년 전 조회 1,478
10년 전 조회 1,418
10년 전 조회 1,892
10년 전 조회 1,358
10년 전 조회 1,329
10년 전 조회 1,585
10년 전 조회 1,397
10년 전 조회 1,368
10년 전 조회 1,361
10년 전 조회 1,310
10년 전 조회 1,235
10년 전 조회 1,216
10년 전 조회 1,322
10년 전 조회 1,315
10년 전 조회 1,251
10년 전 조회 1,144
10년 전 조회 1,228
10년 전 조회 1,212
10년 전 조회 1,223
10년 전 조회 1,278
10년 전 조회 1,278
10년 전 조회 1,225
10년 전 조회 1,224
10년 전 조회 1,269
10년 전 조회 1,243
10년 전 조회 1,325
10년 전 조회 1,238
10년 전 조회 1,190
10년 전 조회 1,177
10년 전 조회 1,181
10년 전 조회 1,166
10년 전 조회 1,189
10년 전 조회 1,200
10년 전 조회 1,167
10년 전 조회 1,236
10년 전 조회 1,166
10년 전 조회 1,261
10년 전 조회 1,343
10년 전 조회 1,321
10년 전 조회 1,269
10년 전 조회 1,183
10년 전 조회 1,303
10년 전 조회 1,207
10년 전 조회 1,226
10년 전 조회 1,192
10년 전 조회 1,161
10년 전 조회 1,164
10년 전 조회 1,175
10년 전 조회 1,270
10년 전 조회 1,209
10년 전 조회 1,295
10년 전 조회 1,198
10년 전 조회 1,230
10년 전 조회 1,223
10년 전 조회 1,269
10년 전 조회 1,366
10년 전 조회 1,445
10년 전 조회 1,239
10년 전 조회 1,305
10년 전 조회 1,187
10년 전 조회 1,107
10년 전 조회 1,158
10년 전 조회 1,297