SplPriorityQueue::next()函數是PHP中的內置函數,用於從隊列中提取頂部節點。
用法:
void SplPriorityQueue::next()
參數:此函數不接受任何參數。
返回值:此函數不返回任何值。
例:
PHP
<?php
// Declare a class
class priorityQueue extends SplPriorityQueue {
// Compare function to compare priority
// queue elements
public function compare($p1, $p2) {
if ($p1 === $p2) return 0;
return $p1 < $p2 ? -1:1;
}
}
// Create an object of priority queue
$obj = new priorityQueue();
// Insert elements into the queue
$obj->insert("Geeks",2);
$obj->insert("GFG",1);
$obj->insert("G4G",3);
$obj->insert('G',4);
// Loop to print the priority
// queue elements
while($obj->valid()){
// Print the current element
echo $obj->current() . " ";
// Move to next element of
// priority queue
$obj->next();
}
?>
輸出
G G4G Geeks GFG
相關用法
- PHP SplPriorityQueue isCorrupted()用法及代碼示例
- PHP SplPriorityQueue isEmpty()用法及代碼示例
- PHP SplPriorityQueue key()用法及代碼示例
- PHP SplPriorityQueue rewind()用法及代碼示例
- PHP SplPriorityQueue insert()用法及代碼示例
- PHP SplPriorityQueue extract()用法及代碼示例
- PHP SplPriorityQueue current()用法及代碼示例
- PHP SplPriorityQueue count()用法及代碼示例
- PHP SplPriorityQueue compare()用法及代碼示例
- 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 SplHeap next()用法及代碼示例
注:本文由純淨天空篩選整理自AshokJaiswal大神的英文原創作品 PHP SplPriorityQueue next() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。