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

· 10년 전 · 1174

<?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);

?>


|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
9년 전 조회 1,415
9년 전 조회 1,241
10년 전 조회 1,467
10년 전 조회 1,283
10년 전 조회 1,290
10년 전 조회 1,384
10년 전 조회 1,318
10년 전 조회 1,334
10년 전 조회 1,256
10년 전 조회 1,669
10년 전 조회 1,715
10년 전 조회 1,684
10년 전 조회 1,620
10년 전 조회 1,413
10년 전 조회 1,553
10년 전 조회 1,693
10년 전 조회 1,380
10년 전 조회 1,692
10년 전 조회 1,665
10년 전 조회 2,039
10년 전 조회 1,641
10년 전 조회 1,863
10년 전 조회 1,488
10년 전 조회 1,611
10년 전 조회 1,339
10년 전 조회 1,399
10년 전 조회 1,468
10년 전 조회 1,464
10년 전 조회 1,593
10년 전 조회 1,381
10년 전 조회 1,408
10년 전 조회 1,361
10년 전 조회 1,326
10년 전 조회 1,373
10년 전 조회 1,218
10년 전 조회 1,259
10년 전 조회 1,179
10년 전 조회 1,317
10년 전 조회 1,257
10년 전 조회 1,737
10년 전 조회 1,223
10년 전 조회 1,181
10년 전 조회 1,429
10년 전 조회 1,235
10년 전 조회 1,209
10년 전 조회 1,215
10년 전 조회 1,168
10년 전 조회 1,099
10년 전 조회 1,084
10년 전 조회 1,175
10년 전 조회 1,182
10년 전 조회 1,105
10년 전 조회 1,003
10년 전 조회 1,083
10년 전 조회 1,056
10년 전 조회 1,092
10년 전 조회 1,131
10년 전 조회 1,129
10년 전 조회 1,079
10년 전 조회 1,084
10년 전 조회 1,141
10년 전 조회 1,093
10년 전 조회 1,176
10년 전 조회 1,111
10년 전 조회 1,046
10년 전 조회 1,019
10년 전 조회 1,051
10년 전 조회 1,013
10년 전 조회 1,048
10년 전 조회 1,080
10년 전 조회 1,033
10년 전 조회 1,100
10년 전 조회 1,040
10년 전 조회 1,136
10년 전 조회 1,226
10년 전 조회 1,187
10년 전 조회 1,135
10년 전 조회 1,056
10년 전 조회 1,158
10년 전 조회 1,079
10년 전 조회 1,112
10년 전 조회 1,057
10년 전 조회 1,045
10년 전 조회 1,047
10년 전 조회 1,066
10년 전 조회 1,169
10년 전 조회 1,104
10년 전 조회 1,191
10년 전 조회 1,068
10년 전 조회 1,091
10년 전 조회 1,088
10년 전 조회 1,149
10년 전 조회 1,237
10년 전 조회 1,318
10년 전 조회 1,114
10년 전 조회 1,190
10년 전 조회 1,081
10년 전 조회 1,000
10년 전 조회 1,050
10년 전 조회 1,174