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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。