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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。