PHP中的Ds \ Queue::push()函数用于在PriorityQueue实例中推送或插入值。该函数还可以将值列表直接插入到队列中。
用法:
void public Ds\Queue::push($value1, $value2, .... $valueN)
参数:此函数接受以空格分隔的值列表作为参数。所有这些值都一个接一个地推入或插入到队列中。
返回值:此函数不返回任何值。
以下示例程序旨在说明PHP中的Ds \ Queue::push()函数:
程序1:
<?php
// Declare new Queue
$q = new \Ds\Queue();
// Add elements to the Queue
$q->push("One");
$q->push("Two");
$q->push("Three");
echo "Queue is:\n";
print_r($q);
?>
输出:
Queue is: Ds\Queue Object ( [0] => One [1] => Two [2] => Three )
程序2:
<?php
// Declare new Queue
$q = new \Ds\Queue();
// Add elements to the Queue
$q->push("One");
$q->push("Two", "2");
$q->push("Three", "3", "4");
echo "Queue is:\n";
print_r($q);
?>
输出:
Queue is: Ds\Queue Object ( [0] => One [1] => Two [2] => 2 [3] => Three [4] => 3 [5] => 4 )
参考: http://php.net/manual/en/ds-priorityqueue.push.php
相关用法
- PHP Ds\Vector push()用法及代码示例
- PHP Ds\Sequence push()用法及代码示例
- PHP Ds\PriorityQueue push()用法及代码示例
- PHP Ds\Deque push()用法及代码示例
- PHP Ds\Stack push()用法及代码示例
- PHP SplDoublyLinkedList push()用法及代码示例
- PHP sin( )用法及代码示例
- PHP abs()用法及代码示例
- PHP pow( )用法及代码示例
- PHP Ds\Map get()用法及代码示例
- PHP pos()用法及代码示例
- PHP end()用法及代码示例
- PHP each()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP Ds\Queue push() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。