update : 2015.11.03
php.shukuma.com

검색:
 
 
The SplMinHeap class

The SplMinHeap class

(PHP 5 >= 5.3.0)

소개

The SplMinHeap class provides the main functionalities of a heap, keeping the minimum on the top.

클래스 개요

SplMinHeap 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

  • SplMinHeap::compare — Compare elements in order to place them correctly in the heap while sifting up.