PHP SplHeap top()函数
SplHeap::top()函数是PHP中的一个内置函数,用于从堆顶部显示 peek 节点。
通常,堆数据结构有两种类型
- Max-Heap:在 Max-Heap 中,存在于根节点的键必须是存在于其所有子节点的键中最大的。对于该二叉树中的所有子树,相同的属性必须递归地为真。
- 最小堆:在最小堆中,存在于根节点的键必须是其所有子节点中存在的键中的最小值。对于该二叉树中的所有子树,相同的属性必须递归地为真。
句法:
mixed SplHeap::top()
参数:此函数不接受任何参数。
返回值:该函数返回顶部节点的值。
下面的程序说明了PHP中的 SplHeap::top()函数。
示例 1:
PHP
insert('System');
$heap->insert('GFG');
$heap->insert('ALGO');
$heap->insert('C');
$heap->insert('Geeks');
$heap->insert('GeeksforGeeks');
// Display the top element
var_dump($heap->top());
?>
PHP
insert('System'.'
');
$heap->insert('GFG'.'
');
$heap->insert('ALGO'.'
');
$heap->insert('C'.'
');
$heap->insert('Geeks'.'
');
$heap->insert('GeeksforGeeks'.'
');
// Loop to display the current element of heap
for ($heap->top(); $heap->valid(); $heap->next())
{
echo $heap->current() . "\n";
}
?>
输出:
string(4) "ALGO"
示例 2:
PHP
insert('System'.'
');
$heap->insert('GFG'.'
');
$heap->insert('ALGO'.'
');
$heap->insert('C'.'
');
$heap->insert('Geeks'.'
');
$heap->insert('GeeksforGeeks'.'
');
// Loop to display the current element of heap
for ($heap->top(); $heap->valid(); $heap->next())
{
echo $heap->current() . "\n";
}
?>
输出:
System
GeeksforGeeks
Geeks
GFG
C
ALGO
参考: https://www. PHP.net/manual/en/splheap.top。 PHP