当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。