Структуры данных
PHP Manual

Класс SplPriorityQueue

(PHP 5 >= 5.3.0, PHP 7)

Введение

Класс SplPriorityQueue обеспечивает основные функциональные возможности приоритетной очереди, реализованный при помощи кучи (max-heap).

Обзор классов

SplPriorityQueue implements Iterator , Countable {
/* Методы */
public __construct ( void )
public int compare ( mixed $priority1 , mixed $priority2 )
public int count ( void )
public mixed current ( void )
public mixed extract ( void )
public void insert ( mixed $value , mixed $priority )
public bool isEmpty ( void )
public mixed key ( void )
public void next ( void )
public void recoverFromCorruption ( void )
public void rewind ( void )
public void setExtractFlags ( int $flags )
public mixed top ( void )
public bool valid ( void )
}

Содержание


Структуры данных
PHP Manual