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

· 10년 전 · 1275

<?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,512
10년 전 조회 1,337
10년 전 조회 1,557
10년 전 조회 1,367
10년 전 조회 1,398
10년 전 조회 1,504
10년 전 조회 1,403
10년 전 조회 1,435
10년 전 조회 1,365
10년 전 조회 1,778
10년 전 조회 1,812
10년 전 조회 1,775
10년 전 조회 1,734
10년 전 조회 1,514
10년 전 조회 1,650
10년 전 조회 1,808
10년 전 조회 1,517
10년 전 조회 1,812
10년 전 조회 1,764
10년 전 조회 2,153
10년 전 조회 1,762
10년 전 조회 1,964
10년 전 조회 1,598
10년 전 조회 1,730
10년 전 조회 1,447
10년 전 조회 1,509
10년 전 조회 1,572
10년 전 조회 1,562
10년 전 조회 1,711
10년 전 조회 1,475
10년 전 조회 1,509
10년 전 조회 1,477
10년 전 조회 1,416
10년 전 조회 1,481
10년 전 조회 1,298
10년 전 조회 1,369
10년 전 조회 1,278
10년 전 조회 1,415
10년 전 조회 1,362
10년 전 조회 1,839
10년 전 조회 1,309
10년 전 조회 1,280
10년 전 조회 1,540
10년 전 조회 1,347
10년 전 조회 1,322
10년 전 조회 1,328
10년 전 조회 1,264
10년 전 조회 1,194
10년 전 조회 1,176
10년 전 조회 1,276
10년 전 조회 1,271
10년 전 조회 1,203
10년 전 조회 1,103
10년 전 조회 1,184
10년 전 조회 1,158
10년 전 조회 1,181
10년 전 조회 1,238
10년 전 조회 1,237
10년 전 조회 1,172
10년 전 조회 1,179
10년 전 조회 1,224
10년 전 조회 1,197
10년 전 조회 1,269
10년 전 조회 1,194
10년 전 조회 1,139
10년 전 조회 1,119
10년 전 조회 1,147
10년 전 조회 1,119
10년 전 조회 1,149
10년 전 조회 1,163
10년 전 조회 1,135
10년 전 조회 1,188
10년 전 조회 1,130
10년 전 조회 1,218
10년 전 조회 1,312
10년 전 조회 1,278
10년 전 조회 1,222
10년 전 조회 1,149
10년 전 조회 1,258
10년 전 조회 1,176
10년 전 조회 1,189
10년 전 조회 1,153
10년 전 조회 1,127
10년 전 조회 1,129
10년 전 조회 1,146
10년 전 조회 1,239
10년 전 조회 1,186
10년 전 조회 1,265
10년 전 조회 1,163
10년 전 조회 1,195
10년 전 조회 1,174
10년 전 조회 1,235
10년 전 조회 1,334
10년 전 조회 1,413
10년 전 조회 1,210
10년 전 조회 1,270
10년 전 조회 1,157
10년 전 조회 1,074
10년 전 조회 1,131
10년 전 조회 1,266