Dutch PHP Conference 2025 - Call For Papers

The SplMaxHeap class

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

Einführung

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

Klassenbeschreibung

class SplMaxHeap extends SplHeap {
/* Methoden */
protected compare(mixed $value1, mixed $value2): int
/* Geerbte Methoden */
protected SplHeap::compare(mixed $value1, mixed $value2): int
public SplHeap::insert(mixed $value): true
public SplHeap::key(): int
}

Inhaltsverzeichnis

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

User Contributed Notes

There are no user contributed notes for this page.
To Top