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
相關用法
- PHP Ds\Map count()用法及代碼示例
- PHP count()用法及代碼示例
- PHP Ds\Set count()用法及代碼示例
- PHP SimpleXMLElement count()用法及代碼示例
- PHP Ds\Stack count()用法及代碼示例
- PHP SplHeap count()用法及代碼示例
- PHP Ds\Queue count()用法及代碼示例
- PHP ArrayIterator count()用法及代碼示例
- PHP Ds\Deque count()用法及代碼示例
- PHP SplFixedArray count()用法及代碼示例
- PHP ArrayObject count()用法及代碼示例
- PHP Ds\Vector count()用法及代碼示例
- PHP SplObjectStorage count()用法及代碼示例
- PHP SplDoublyLinkedList count()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP Ds\PriorityQueue count() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。