略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: SplMaxHeap

2024-04-19

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::count(): int
public SplHeap::insert(mixed $value): bool
public SplHeap::isCorrupted(): bool
public SplHeap::isEmpty(): bool
public SplHeap::key(): int
public SplHeap::next(): void
public SplHeap::rewind(): void
public SplHeap::valid(): bool
}

目录

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

User Contributed Notes 1 note

up
-4
MuLoT [ojousset49 at yahoo dot fr]
11 years ago
SplMaxHeap simple example with integer values...

<?php
class MySimpleHeap extends SplHeap
{
    public function  compare( $value1, $value2 ) {
        return ( $value1 - $value2 );
    }
}

$obj = new MySimpleHeap();
$obj->insert( 4 );
$obj->insert( 8 );
$obj->insert( 1 );
$obj->insert( 0 );

foreach( $obj as $number ) {
    echo $number.\"\\n\";
}

/*
    Output display :
    8
    4
    1
    0
*/
?>

官方地址:https://www.php.net/manual/en/class.splmaxheap.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3