SplHeap::count()函數是PHP中的一個內置函數,用於計算堆中的元素。
通常,堆可以有兩種類型:
- Max-Heap:在Max-Heap中,根節點上存在的 key 必須在其所有子節點上存在的 key 中最大。對於該二叉樹中的所有子樹,相同的屬性必須遞歸地為true。
- Min-Heap:在Min-Heap中,根節點上存在的 key 必須在其所有子節點上存在的 key 中最小。對於該二叉樹中的所有子樹,相同的屬性必須遞歸地為true。
注意:本文使用Max Heap擴展了SplHeap類。
用法:
int SplMaxHeap::count()
參數:該函數不接受任何參數。
返回值:此函數返回堆中存在的節點數。
以下示例程序旨在說明PHP中的SplMaxHeap::count()函數:
示例1:
<?php
// Create a new empty Max Heap
$heap = new SplMaxHeap();
$heap->insert('GEEKS');
$heap->insert('gfg');
// Print Result
echo $heap->count();
?>
輸出:
2
示例2:
<?php
// Create a new empty Max Heap
$heap = new SplMaxHeap();
// Print Result
echo $heap->count() . "\n";
$heap->insert('GEEKS');
$heap->insert('gfg');
$heap->insert('DSA');
$heap->insert('ALGO');
$heap->insert('C');
// Print Result
echo $heap->count();
?>
輸出:
0 5
參考: https://www.php.net/manual/en/splheap.count.php
相關用法
- PHP SplHeap current()用法及代碼示例
- PHP count()用法及代碼示例
- PHP Ds\Set count()用法及代碼示例
- PHP Ds\Map count()用法及代碼示例
- PHP Ds\Vector count()用法及代碼示例
- PHP SplDoublyLinkedList count()用法及代碼示例
- PHP Ds\Stack count()用法及代碼示例
- PHP ArrayIterator count()用法及代碼示例
- PHP ArrayObject count()用法及代碼示例
- PHP Ds\Queue count()用法及代碼示例
- PHP SimpleXMLElement count()用法及代碼示例
- PHP Ds\Deque count()用法及代碼示例
- PHP Ds\PriorityQueue count()用法及代碼示例
- PHP SplObjectStorage count()用法及代碼示例
- PHP SplFixedArray count()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | SplHeap count() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。