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


PHP Ds\PriorityQueue peek()用法及代碼示例


PHP中的Ds \ PriorityQueue::peek()函數用於獲取出現在PriorityQueue前麵的值。

用法:

mixed public Ds\PriorityQueue::peek ( void )

參數:該函數不接受任何參數。


返回值:此函數返回此PriorityQueue前麵的值。函數的返回類型是混合的,並且取決於存儲在PriorityQueue中的值的類型。

異常:如果PriorityQueue為空,則此函數引發UnderflowException。

以下示例程序旨在說明Ds \ PriorityQueue::peek():

程序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 "PriorityQueue is:\n"; 
print_r($pq); 
  
// Get element at the front 
echo "\nElement at front is:"; 
print_r($pq->peek()); 
  
?> 
輸出:
PriorityQueue is:
Ds\PriorityQueue Object
(
    [0] => Three
    [1] => Two
    [2] => One
)

Element at front is:Three

程序2:

<?php  
  
// Declare new PriorityQueue  
$pq = new \Ds\PriorityQueue();  
  
echo "PriorityQueue is:\n"; 
print_r($pq); 
  
// Get element at the front 
echo "\nElement at front is:"; 
print_r($pq->peek()); 
  
?> 
輸出:
PHP Fatal error: Uncaught UnderflowException

參考: http://php.net/manual/en/ds-priorityqueue.peek.php



相關用法


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