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


PHP Ds\PriorityQueue count()用法及代码示例


PHP中的Ds \ PriorityQueue::count()函数用于获取PriorityQueue实例中存在的元素数。

用法

int public Ds\PriorityQueue::copy ( void )

参数:该函数不接受任何参数。


返回值:此函数计算PriorityQueue实例中存在的元素数并返回计数。

以下示例程序旨在说明PHP中的Ds \ PriorityQueue::count()函数:

程序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); 
  
// Count the number of elements  
// in this PriorityQueue 
print_r($pq->count()); 
  
?> 
输出:
3 

程序2:

<?php  
  
// Declare new PriorityQueue  
$pq = new \Ds\PriorityQueue();  
  
// Add elements to the PriorityQueue 
$pq->push("Geeks", 1); 
$pq->push("for", 2); 
$pq->push("Geeks", 3); 
  
// Count the number of elements  
// in this PriorityQueue 
print_r($pq->count()); 
  
?> 
输出:
3

参考: http://php.net/manual/en/ds-priorityqueue.count.php



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP Ds\PriorityQueue count() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。