The SplMaxHeap class

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

简介

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

类摘要

class SplMaxHeap extends SplHeap {
/* 方法 */
protected compare(mixed $value1, mixed $value2): int
/* 继承的方法 */
protected SplHeap::compare(mixed $value1, mixed $value2): int
public SplHeap::insert(mixed $value): true
public SplHeap::key(): int
}

目录

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