Php/docs/class.ds-priorityqueue

提供:Dev Guides
< Php
2020年12月14日 (月) 09:59時点におけるNotes (トーク | 投稿記録)による版 (autoload)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先:案内検索

(No version information available, might only be in Git)

はじめに

A PriorityQueue is very similar to a Queue. Values are pushed into the queue with an assigned priority, and the value with the highest priority will always be at the front of the queue.

Implemented using a max heap.

注意:

"First in, first out" ordering is preserved for values with the same priority.

注意:

Iterating over a PriorityQueue is destructive, equivalent to successive pop operations until the queue is empty.

クラス概要


Ds\PriorityQueue implements Ds\Collection {

/* Constants */

const int MIN_CAPACITY = 8

/* メソッド */

public allocate ( int $capacity ) : void

public capacity ( ) : int

public clear ( ) : void

public copy ( ) : Ds\PriorityQueue

public isEmpty ( ) : bool

public peek ( ) : mixed

public pop ( ) : mixed

public push ( mixed $value , int $priority ) : void

public toArray ( ) : array

}

定義済み定数

Ds\PriorityQueue::MIN_CAPACITY


目次