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

· 10년 전 · 865

<?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,013
9년 전 조회 853
9년 전 조회 1,047
9년 전 조회 904
9년 전 조회 916
9년 전 조회 980
9년 전 조회 962
9년 전 조회 953
9년 전 조회 913
9년 전 조회 1,288
9년 전 조회 1,347
10년 전 조회 1,325
10년 전 조회 1,245
10년 전 조회 1,065
10년 전 조회 1,189
10년 전 조회 1,345
10년 전 조회 1,006
10년 전 조회 1,406
10년 전 조회 1,294
10년 전 조회 1,677
10년 전 조회 1,296
10년 전 조회 1,486
10년 전 조회 1,112
10년 전 조회 1,275
10년 전 조회 976
10년 전 조회 1,030
10년 전 조회 1,116
10년 전 조회 1,105
10년 전 조회 1,241
10년 전 조회 1,080
10년 전 조회 1,087
10년 전 조회 1,047
10년 전 조회 973
10년 전 조회 1,071
10년 전 조회 906
10년 전 조회 955
10년 전 조회 871
10년 전 조회 988
10년 전 조회 961
10년 전 조회 1,425
10년 전 조회 937
10년 전 조회 864
10년 전 조회 1,118
10년 전 조회 957
10년 전 조회 914
10년 전 조회 923
10년 전 조회 889
10년 전 조회 834
10년 전 조회 784
10년 전 조회 866
10년 전 조회 901
10년 전 조회 855
10년 전 조회 785
10년 전 조회 855
10년 전 조회 833
10년 전 조회 848
10년 전 조회 908
10년 전 조회 907
10년 전 조회 839
10년 전 조회 865
10년 전 조회 918
10년 전 조회 934
10년 전 조회 959
10년 전 조회 893
10년 전 조회 828
10년 전 조회 812
10년 전 조회 844
10년 전 조회 794
10년 전 조회 830
10년 전 조회 866
10년 전 조회 792
10년 전 조회 843
10년 전 조회 827
10년 전 조회 911
10년 전 조회 1,012
10년 전 조회 966
10년 전 조회 922
10년 전 조회 823
10년 전 조회 946
10년 전 조회 848
10년 전 조회 886
10년 전 조회 836
10년 전 조회 830
10년 전 조회 800
10년 전 조회 832
10년 전 조회 931
10년 전 조회 876
10년 전 조회 974
10년 전 조회 843
10년 전 조회 882
10년 전 조회 864
10년 전 조회 917
10년 전 조회 1,078
10년 전 조회 1,083
10년 전 조회 869
10년 전 조회 954
10년 전 조회 847
10년 전 조회 794
10년 전 조회 827
10년 전 조회 959