The SplMaxHeap class

(PHP 5 >= 5.3.0, PHP 7)

소개

The SplMaxHeap class provides the main functionalities of a heap, keeping the maximum on the top.

클래스 개요

SplMaxHeap extends SplHeap implements Iterator , Countable {
/* 메소드 */
protected int compare ( mixed $value1 , mixed $value2 )
/* 상속된 메소드 */
abstract protected int SplHeap::compare ( mixed $value1 , mixed $value2 )
public int SplHeap::count ( void )
public mixed SplHeap::current ( void )
public mixed SplHeap::extract ( void )
public void SplHeap::insert ( mixed $value )
public bool SplHeap::isEmpty ( void )
public mixed SplHeap::key ( void )
public void SplHeap::next ( void )
public void SplHeap::recoverFromCorruption ( void )
public void SplHeap::rewind ( void )
public mixed SplHeap::top ( void )
public bool SplHeap::valid ( void )
}

Table of Contents

  • SplMaxHeap::compare — Compare elements in order to place them correctly in the heap while sifting up.
add a note add a note

User Contributed Notes 1 note

up
-4
MuLoT [ojousset49 at yahoo dot fr]
13 years ago
SplMaxHeap simple example with integer values...

<?php
class MySimpleHeap extends SplHeap
{
    public function  compare( $value1, $value2 ) {
        return ( $value1 - $value2 );
    }
}

$obj = new MySimpleHeap();
$obj->insert( 4 );
$obj->insert( 8 );
$obj->insert( 1 );
$obj->insert( 0 );

foreach( $obj as $number ) {
    echo $number.\"\\n\";
}

/*
    Output display :
    8
    4
    1
    0
*/
?>
To Top