PHP中的Ds \ PriorityQueue::toArray()函數用於將PriorityQueue轉換為PHP中的關聯數組。 PriorityQueue的值按照優先級遞減的順序分配給該數組。
用法:
array public Ds\PriorityQueue::toArray ( void )
參數:該函數不接受任何參數。
返回值:此函數將PriorityQueue轉換為關聯數組並返回該數組。
以下示例程序旨在說明PHP中的Ds \ PriorityQueue::toArray()函數:
<?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 "The equivalent array is:\n";
print_r($pq->toArray());
輸出:
The equivalent array is: Array ( [0] => Three [1] => Two [2] => One )
參考: http://php.net/manual/en/ds-priorityqueue.toarray.php
相關用法
- PHP Ds\Map toArray()用法及代碼示例
- PHP Ds\Set toArray()用法及代碼示例
- PHP Ds\Queue toArray()用法及代碼示例
- PHP Ds\Collection toArray()用法及代碼示例
- PHP Ds\Pair toArray()用法及代碼示例
- PHP SplFixedArray toArray()用法及代碼示例
- PHP Ds\Deque toArray()用法及代碼示例
- PHP Ds\Vector toArray()用法及代碼示例
- PHP Ds\Stack toArray()用法及代碼示例
- PHP pi( )用法及代碼示例
- PHP Ds\Map xor()用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- PHP end()用法及代碼示例
- PHP next()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP Ds\PriorityQueue toArray() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。