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

· 10년 전 · 1472

<?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,649
10년 전 조회 1,451
10년 전 조회 1,690
10년 전 조회 1,480
10년 전 조회 1,540
10년 전 조회 1,640
10년 전 조회 1,535
10년 전 조회 1,578
10년 전 조회 1,510
10년 전 조회 1,913
10년 전 조회 1,929
10년 전 조회 1,918
10년 전 조회 1,883
10년 전 조회 1,664
10년 전 조회 1,787
10년 전 조회 1,960
10년 전 조회 1,658
10년 전 조회 1,941
10년 전 조회 1,915
10년 전 조회 2,292
10년 전 조회 1,906
10년 전 조회 2,117
10년 전 조회 1,719
10년 전 조회 1,897
10년 전 조회 1,594
10년 전 조회 1,672
10년 전 조회 1,706
10년 전 조회 1,709
10년 전 조회 1,879
10년 전 조회 1,642
10년 전 조회 1,679
10년 전 조회 1,676
10년 전 조회 1,589
10년 전 조회 1,644
10년 전 조회 1,456
10년 전 조회 1,533
10년 전 조회 1,450
10년 전 조회 1,597
10년 전 조회 1,548
10년 전 조회 2,015
10년 전 조회 1,476
10년 전 조회 1,451
10년 전 조회 1,716
10년 전 조회 1,513
10년 전 조회 1,487
10년 전 조회 1,490
10년 전 조회 1,451
10년 전 조회 1,376
10년 전 조회 1,346
10년 전 조회 1,473
10년 전 조회 1,447
10년 전 조회 1,394
10년 전 조회 1,275
10년 전 조회 1,360
10년 전 조회 1,382
10년 전 조회 1,381
10년 전 조회 1,426
10년 전 조회 1,417
10년 전 조회 1,362
10년 전 조회 1,364
10년 전 조회 1,420
10년 전 조회 1,387
10년 전 조회 1,479
10년 전 조회 1,384
10년 전 조회 1,344
10년 전 조회 1,311
10년 전 조회 1,339
10년 전 조회 1,349
10년 전 조회 1,349
10년 전 조회 1,365
10년 전 조회 1,316
10년 전 조회 1,384
10년 전 조회 1,317
10년 전 조회 1,415
10년 전 조회 1,509
10년 전 조회 1,481
10년 전 조회 1,405
10년 전 조회 1,334
10년 전 조회 1,458
10년 전 조회 1,345
10년 전 조회 1,404
10년 전 조회 1,344
10년 전 조회 1,323
10년 전 조회 1,310
10년 전 조회 1,340
10년 전 조회 1,431
10년 전 조회 1,358
10년 전 조회 1,442
10년 전 조회 1,364
10년 전 조회 1,402
10년 전 조회 1,392
10년 전 조회 1,451
10년 전 조회 1,526
10년 전 조회 1,582
10년 전 조회 1,395
10년 전 조회 1,444
10년 전 조회 1,348
10년 전 조회 1,260
10년 전 조회 1,317
10년 전 조회 1,441