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

· 10년 전 · 1501

<?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,679
10년 전 조회 1,474
10년 전 조회 1,714
10년 전 조회 1,503
10년 전 조회 1,569
10년 전 조회 1,669
10년 전 조회 1,561
10년 전 조회 1,600
10년 전 조회 1,539
10년 전 조회 1,941
10년 전 조회 1,953
10년 전 조회 1,945
10년 전 조회 1,921
10년 전 조회 1,693
10년 전 조회 1,810
10년 전 조회 1,988
10년 전 조회 1,684
10년 전 조회 1,972
10년 전 조회 1,943
10년 전 조회 2,319
10년 전 조회 1,931
10년 전 조회 2,140
10년 전 조회 1,754
10년 전 조회 1,913
10년 전 조회 1,612
10년 전 조회 1,706
10년 전 조회 1,728
10년 전 조회 1,739
10년 전 조회 1,904
10년 전 조회 1,673
10년 전 조회 1,703
10년 전 조회 1,707
10년 전 조회 1,617
10년 전 조회 1,672
10년 전 조회 1,477
10년 전 조회 1,558
10년 전 조회 1,469
10년 전 조회 1,625
10년 전 조회 1,581
10년 전 조회 2,034
10년 전 조회 1,511
10년 전 조회 1,477
10년 전 조회 1,740
10년 전 조회 1,552
10년 전 조회 1,516
10년 전 조회 1,523
10년 전 조회 1,480
10년 전 조회 1,400
10년 전 조회 1,371
10년 전 조회 1,502
10년 전 조회 1,474
10년 전 조회 1,422
10년 전 조회 1,308
10년 전 조회 1,389
10년 전 조회 1,413
10년 전 조회 1,407
10년 전 조회 1,452
10년 전 조회 1,435
10년 전 조회 1,398
10년 전 조회 1,395
10년 전 조회 1,442
10년 전 조회 1,418
10년 전 조회 1,507
10년 전 조회 1,409
10년 전 조회 1,368
10년 전 조회 1,342
10년 전 조회 1,359
10년 전 조회 1,376
10년 전 조회 1,374
10년 전 조회 1,397
10년 전 조회 1,347
10년 전 조회 1,411
10년 전 조회 1,340
10년 전 조회 1,445
10년 전 조회 1,532
10년 전 조회 1,505
10년 전 조회 1,433
10년 전 조회 1,360
10년 전 조회 1,497
10년 전 조회 1,389
10년 전 조회 1,432
10년 전 조회 1,376
10년 전 조회 1,359
10년 전 조회 1,351
10년 전 조회 1,375
10년 전 조회 1,470
10년 전 조회 1,395
10년 전 조회 1,482
10년 전 조회 1,386
10년 전 조회 1,444
10년 전 조회 1,430
10년 전 조회 1,490
10년 전 조회 1,552
10년 전 조회 1,618
10년 전 조회 1,431
10년 전 조회 1,478
10년 전 조회 1,383
10년 전 조회 1,310
10년 전 조회 1,352
10년 전 조회 1,475