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

· 10년 전 · 1339

<?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,556
10년 전 조회 1,377
10년 전 조회 1,597
10년 전 조회 1,401
10년 전 조회 1,445
10년 전 조회 1,556
10년 전 조회 1,448
10년 전 조회 1,481
10년 전 조회 1,417
10년 전 조회 1,830
10년 전 조회 1,853
10년 전 조회 1,825
10년 전 조회 1,794
10년 전 조회 1,568
10년 전 조회 1,696
10년 전 조회 1,864
10년 전 조회 1,580
10년 전 조회 1,857
10년 전 조회 1,829
10년 전 조회 2,204
10년 전 조회 1,810
10년 전 조회 2,016
10년 전 조회 1,654
10년 전 조회 1,793
10년 전 조회 1,499
10년 전 조회 1,564
10년 전 조회 1,621
10년 전 조회 1,600
10년 전 조회 1,762
10년 전 조회 1,532
10년 전 조회 1,566
10년 전 조회 1,559
10년 전 조회 1,473
10년 전 조회 1,543
10년 전 조회 1,354
10년 전 조회 1,428
10년 전 조회 1,327
10년 전 조회 1,489
10년 전 조회 1,429
10년 전 조회 1,905
10년 전 조회 1,370
10년 전 조회 1,340
10년 전 조회 1,599
10년 전 조회 1,403
10년 전 조회 1,377
10년 전 조회 1,374
10년 전 조회 1,317
10년 전 조회 1,250
10년 전 조회 1,230
10년 전 조회 1,340
10년 전 조회 1,320
10년 전 조회 1,263
10년 전 조회 1,157
10년 전 조회 1,236
10년 전 조회 1,222
10년 전 조회 1,237
10년 전 조회 1,288
10년 전 조회 1,288
10년 전 조회 1,235
10년 전 조회 1,234
10년 전 조회 1,277
10년 전 조회 1,259
10년 전 조회 1,330
10년 전 조회 1,248
10년 전 조회 1,198
10년 전 조회 1,183
10년 전 조회 1,186
10년 전 조회 1,180
10년 전 조회 1,199
10년 전 조회 1,212
10년 전 조회 1,174
10년 전 조회 1,244
10년 전 조회 1,182
10년 전 조회 1,271
10년 전 조회 1,350
10년 전 조회 1,332
10년 전 조회 1,277
10년 전 조회 1,189
10년 전 조회 1,319
10년 전 조회 1,211
10년 전 조회 1,238
10년 전 조회 1,202
10년 전 조회 1,169
10년 전 조회 1,172
10년 전 조회 1,189
10년 전 조회 1,278
10년 전 조회 1,216
10년 전 조회 1,301
10년 전 조회 1,206
10년 전 조회 1,239
10년 전 조회 1,231
10년 전 조회 1,277
10년 전 조회 1,376
10년 전 조회 1,456
10년 전 조회 1,249
10년 전 조회 1,318
10년 전 조회 1,194
10년 전 조회 1,122
10년 전 조회 1,176
10년 전 조회 1,308