PHP | SplHeap count()函数
SplHeap::count()函数是PHP中的一个内置函数,用于对堆中的元素进行计数。
通常,堆可以有两种类型:
- Max-Heap:在 Max-Heap 中,存在于根节点的键必须是其所有子节点中存在的键中最大的。对于该二叉树中的所有子树,相同的属性必须递归地为真。
- 最小堆:在最小堆中,存在于根节点的键必须是其所有子节点中存在的键中的最小值。对于该二叉树中的所有子树,相同的属性必须递归地为真。
注意:本文使用扩展了 SplHeap 类的 Max Heap。
句法:
int SplMaxHeap::count()
参数:此函数不接受任何参数。
返回值:此函数返回堆中存在的节点数。
下面的程序说明了PHP中的 SplMaxHeap::count()函数:
方案一:
insert('GEEKS');
$heap->insert('gfg');
// Print Result
echo $heap->count();
?>
输出:
2
方案二:
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