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

· 10년 전 · 948

<?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,105
9년 전 조회 954
9년 전 조회 1,150
9년 전 조회 1,011
9년 전 조회 1,015
9년 전 조회 1,086
9년 전 조회 1,054
9년 전 조회 1,057
9년 전 조회 1,001
9년 전 조회 1,386
10년 전 조회 1,458
10년 전 조회 1,416
10년 전 조회 1,346
10년 전 조회 1,150
10년 전 조회 1,294
10년 전 조회 1,439
10년 전 조회 1,100
10년 전 조회 1,480
10년 전 조회 1,409
10년 전 조회 1,766
10년 전 조회 1,383
10년 전 조회 1,588
10년 전 조회 1,215
10년 전 조회 1,377
10년 전 조회 1,080
10년 전 조회 1,127
10년 전 조회 1,211
10년 전 조회 1,200
10년 전 조회 1,328
10년 전 조회 1,160
10년 전 조회 1,178
10년 전 조회 1,138
10년 전 조회 1,073
10년 전 조회 1,153
10년 전 조회 997
10년 전 조회 1,042
10년 전 조회 954
10년 전 조회 1,083
10년 전 조회 1,041
10년 전 조회 1,501
10년 전 조회 999
10년 전 조회 949
10년 전 조회 1,192
10년 전 조회 1,025
10년 전 조회 993
10년 전 조회 1,003
10년 전 조회 973
10년 전 조회 902
10년 전 조회 868
10년 전 조회 949
10년 전 조회 980
10년 전 조회 914
10년 전 조회 835
10년 전 조회 904
10년 전 조회 869
10년 전 조회 906
10년 전 조회 953
10년 전 조회 956
10년 전 조회 889
10년 전 조회 905
10년 전 조회 964
10년 전 조회 967
10년 전 조회 1,009
10년 전 조회 936
10년 전 조회 877
10년 전 조회 864
10년 전 조회 884
10년 전 조회 849
10년 전 조회 873
10년 전 조회 910
10년 전 조회 860
10년 전 조회 903
10년 전 조회 874
10년 전 조회 959
10년 전 조회 1,071
10년 전 조회 1,022
10년 전 조회 968
10년 전 조회 883
10년 전 조회 987
10년 전 조회 905
10년 전 조회 931
10년 전 조회 892
10년 전 조회 875
10년 전 조회 868
10년 전 조회 894
10년 전 조회 989
10년 전 조회 928
10년 전 조회 1,015
10년 전 조회 890
10년 전 조회 924
10년 전 조회 913
10년 전 조회 964
10년 전 조회 1,112
10년 전 조회 1,125
10년 전 조회 932
10년 전 조회 1,004
10년 전 조회 898
10년 전 조회 837
10년 전 조회 877
10년 전 조회 1,008