Ds \ PriorityQueue :: count()PHP中的函数用于获取PriorityQueue实例中存在的元素数。
语法:
int public Ds\PriorityQueue::copy ( void )
参数:该函数不接受任何参数。
返回值:此函数计算PriorityQueue实例中存在的元素数并返回计数。
下面的程序说明了Ds \ PriorityQueue :: count()PHP中的功能:
程序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
【PHP Ds PriorityQueue count()函数用法介绍】参考: http://php.net/manual/en/ds-priorityqueue.count.php
推荐阅读
- 如何交换给定整数中的两位()
- Python OpenCV cv2.line()方法用法介绍
- 高级算法设计(打印N皇后问题中的所有解决方案)
- 如何在Windows中安装Jupyter Notebook()
- C#方法介绍和用法详细指南
- PHP | pos()函数用法详细指南
- 经典推荐(一些有用的Linux技巧详细介绍)
- 输入字符串中出现的最大字符数|s2
- Python检查两个列表是否相同