SplHeap::next()函数是PHP中的内置函数,用于移至下一个节点。这将删除堆的顶部节点。
通常,堆数据结构有两种类型。
- Max-Heap:在Max-Heap中,根节点上存在的 key 必须在其所有子节点上存在的 key 中最大。对于该二叉树中的所有子树,相同的属性必须递归地为true。
- Min-Heap:在Min-Heap中,根节点上存在的 key 必须在其所有子节点上存在的 key 中最小。对于该二叉树中的所有子树,相同的属性必须递归地为true。
用法:
void SplHeap::next()
参数:此函数不接受任何参数。
返回值:此函数不返回任何值。
以下示例程序旨在说明PHP中的SplHeap::next()函数:
范例1:
PHP
<?php
// Create a new empty Min Heap
$heap = new SplMinHeap();
// Insert elements into the heap
$heap->insert('System'.'<br/>');
$heap->insert('GFG'.'<br/>');
$heap->insert('ALGO'.'<br/>');
$heap->insert('C'.'<br/>');
$heap->insert('Geeks'.'<br/>');
$heap->insert('GeeksforGeeks'.'<br/>');
// Loop to display the current element of heap
for ($heap->top(); $heap->valid(); $heap->next()) {
echo $heap->current() . "\n";
}
?>
输出:
ALGO C GFG Geeks GeeksforGeeks System
范例2:
PHP
<?php
// Create a new empty Max Heap
$heap = new SplMaxHeap();
// Insert elements into heap
$heap->insert('System'.'<br/>');
$heap->insert('GFG'.'<br/>');
$heap->insert('ALGO'.'<br/>');
$heap->insert('C'.'<br/>');
$heap->insert('Geeks'.'<br/>');
$heap->insert('GeeksforGeeks'.'<br/>');
// 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
相关用法
- PHP SplHeap current()用法及代码示例
- PHP SplHeap count()用法及代码示例
- PHP SplHeap extract()用法及代码示例
- PHP SplHeap __construct()用法及代码示例
- PHP SplHeap isEmpty()用法及代码示例
- PHP SplHeap isCorrupted()用法及代码示例
- PHP SplHeap top()用法及代码示例
- PHP SplHeap rewind()用法及代码示例
- PHP SplHeap key()用法及代码示例
- PHP next()用法及代码示例
- PHP SplDoublyLinkedList next()用法及代码示例
- PHP SplObjectStorage next()用法及代码示例
- PHP SplFixedArray next()用法及代码示例
- PHP SimpleXMLIterator next()用法及代码示例
- PHP ArrayIterator next()用法及代码示例
- PHP AppendIterator next()用法及代码示例
- PHP CachingIterator next()用法及代码示例
- PHP FilesystemIterator next()用法及代码示例
- PHP DirectoryIterator next()用法及代码示例
- PHP XMLReader next()用法及代码示例
- PHP SplPriorityQueue next()用法及代码示例
注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 PHP SplHeap next() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。