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

· 10년 전 · 1146

<?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,386
9년 전 조회 1,222
9년 전 조회 1,441
9년 전 조회 1,267
9년 전 조회 1,265
9년 전 조회 1,354
10년 전 조회 1,294
10년 전 조회 1,311
10년 전 조회 1,228
10년 전 조회 1,642
10년 전 조회 1,691
10년 전 조회 1,658
10년 전 조회 1,598
10년 전 조회 1,385
10년 전 조회 1,526
10년 전 조회 1,674
10년 전 조회 1,357
10년 전 조회 1,673
10년 전 조회 1,648
10년 전 조회 2,014
10년 전 조회 1,616
10년 전 조회 1,833
10년 전 조회 1,464
10년 전 조회 1,585
10년 전 조회 1,322
10년 전 조회 1,366
10년 전 조회 1,446
10년 전 조회 1,433
10년 전 조회 1,572
10년 전 조회 1,357
10년 전 조회 1,387
10년 전 조회 1,338
10년 전 조회 1,306
10년 전 조회 1,350
10년 전 조회 1,196
10년 전 조회 1,238
10년 전 조회 1,161
10년 전 조회 1,282
10년 전 조회 1,242
10년 전 조회 1,719
10년 전 조회 1,202
10년 전 조회 1,162
10년 전 조회 1,407
10년 전 조회 1,214
10년 전 조회 1,189
10년 전 조회 1,192
10년 전 조회 1,151
10년 전 조회 1,082
10년 전 조회 1,064
10년 전 조회 1,147
10년 전 조회 1,158
10년 전 조회 1,089
10년 전 조회 990
10년 전 조회 1,076
10년 전 조회 1,033
10년 전 조회 1,077
10년 전 조회 1,115
10년 전 조회 1,110
10년 전 조회 1,056
10년 전 조회 1,065
10년 전 조회 1,120
10년 전 조회 1,074
10년 전 조회 1,156
10년 전 조회 1,098
10년 전 조회 1,032
10년 전 조회 998
10년 전 조회 1,030
10년 전 조회 984
10년 전 조회 1,029
10년 전 조회 1,060
10년 전 조회 1,006
10년 전 조회 1,070
10년 전 조회 1,030
10년 전 조회 1,110
10년 전 조회 1,204
10년 전 조회 1,160
10년 전 조회 1,113
10년 전 조회 1,038
10년 전 조회 1,138
10년 전 조회 1,067
10년 전 조회 1,098
10년 전 조회 1,041
10년 전 조회 1,030
10년 전 조회 1,029
10년 전 조회 1,045
10년 전 조회 1,155
10년 전 조회 1,084
10년 전 조회 1,170
10년 전 조회 1,046
10년 전 조회 1,075
10년 전 조회 1,064
10년 전 조회 1,130
10년 전 조회 1,220
10년 전 조회 1,297
10년 전 조회 1,098
10년 전 조회 1,166
10년 전 조회 1,059
10년 전 조회 988
10년 전 조회 1,032
10년 전 조회 1,164