数据结构
PHP Manual

The SplPriorityQueue class

(PHP 5 >= 5.3.0)

简介

The SplPriorityQueue class provides the main functionalities of an prioritized queue, implemented using a heap.

类摘要

SplPriorityQueue implements Iterator , Countable {
/* 方法 */
__construct ( void )
int compare ( mixed $priority1 , mixed $priority2 )
int count ( void )
mixed current ( void )
mixed extract ( void )
void insert ( mixed $value , mixed $priority )
bool isEmpty ( void )
mixed key ( void )
void next ( void )
void recoverFromCorruption ( void )
void rewind ( void )
void setExtractFlags ( int $flags )
mixed top ( void )
bool valid ( void )
}

Table of Contents


数据结构
PHP Manual