📜  PHP Ds\PriorityQueue count()函数

📅  最后修改于: 2022-05-13 01:57:39.974000             🧑  作者: Mango

PHP Ds\PriorityQueue count()函数

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

语法

int public Ds\PriorityQueue::count( void )

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

返回值:此函数计算优先队列实例中存在的元素数并返回计数。

下面的程序说明了PHP的Ds\PriorityQueue::count()函数:



方案一:

PHP
push("One", 1);
$pq->push("Two", 2);
$pq->push("Three", 3);
 
// Count the number of elements
// in this PriorityQueue
print_r($pq->count());
 
?>


PHP
push("Geeks", 1);
$pq->push("for", 2);
$pq->push("Geeks", 3);
 
// Count the number of elements
// in this PriorityQueue
print_r($pq->count());
 
?>


输出:
3 








方案二:

PHP

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 /手动/ EN / DS-priorityqueue.count。 PHP