當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP SplHeap next()用法及代碼示例


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

參考:https://www.php.net/manual/en/splheap.next.php

相關用法


注:本文由純淨天空篩選整理自AshokJaiswal大神的英文原創作品 PHP SplHeap next() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。