PHP中的Ds \ PriorityQueue::pop()函數用於刪除並返回出現在PriorityQueue頂部的值。換句話說,它返回PriorityQueue中具有最高優先級的值並將其刪除。
用法:
mixed public Ds\PriorityQueue::pop ( void )
參數:該函數不接受任何參數。
返回值:此函數返回此PriorityQueue中具有最高優先級的值,並將其刪除。函數的返回類型是混合的,並且取決於存儲在PriorityQueue中的值的類型。
異常:如果PriorityQueue為空,則此函數引發UnderflowException。
以下示例程序旨在說明PHP中的Ds \ PriorityQueue::pop()函數:
程序1:
<?php
// Declare new PriorityQueue
$pq = new \Ds\PriorityQueue();
// Add elements to the PriorityQueue
$pq->push("One", 1);
$pq->push("Two", 2);
$pq->push("Three", 3);
echo "Initial PriorityQueue is:\n";
print_r($pq);
// Pop an element
echo "\nPopped element is:";
print_r($pq->pop());
echo "\n\nFinal PriorityQueue is:\n";
print_r($pq);
?>
輸出:
Initial PriorityQueue is: Ds\PriorityQueue Object ( [0] => Three [1] => Two [2] => One ) Popped element is:Three Final PriorityQueue is: Ds\PriorityQueue Object ( [0] => Two [1] => One )
程序2:
<?php
// Declare new PriorityQueue
$pq = new \Ds\PriorityQueue();
// Add elements to the PriorityQueue
$pq->push("One", 1);
$pq->push("Two", 3);
$pq->push("Three", 2);
echo "Initial PriorityQueue is:\n";
print_r($pq);
// Pop an element
echo "\nPopped element is:";
print_r($pq->pop());
echo "\n\nFinal PriorityQueue is:\n";
print_r($pq);
?>
輸出:
Initial PriorityQueue is: Ds\PriorityQueue Object ( [0] => Two [1] => Three [2] => One ) Popped element is:Two Final PriorityQueue is: Ds\PriorityQueue Object ( [0] => Three [1] => One )
參考: http://php.net/manual/en/ds-priorityqueue.pop.php
相關用法
- PHP exp()用法及代碼示例
- PHP ord()用法及代碼示例
- PHP Ds\Map map()用法及代碼示例
- PHP Ds\Map last()用法及代碼示例
- PHP dir()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP pos()用法及代碼示例
- PHP key()用法及代碼示例
- PHP min( )用法及代碼示例
- PHP each()用法及代碼示例
- PHP end()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP abs()用法及代碼示例
- PHP max( )用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP Ds\PriorityQueue pop() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。