為烏海海南等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計(jì)制作服務(wù),及烏海海南網(wǎng)站建設(shè)行業(yè)解決方案。主營(yíng)業(yè)務(wù)為做網(wǎng)站、成都網(wǎng)站制作、烏海海南網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長(zhǎng)期合作。這樣,我們也可以走得更遠(yuǎn)!
class QueueClass
{
private $queue=null;
private $fornt=0;
private $tail=0;
public function __construct()
{
$this->fornt=0;
$this->tail=0;
$this->queue=array();
}
public function add_item($item)
{
$this->queue[$this->tail++]=$item;
}
public function del_item()
{
if(!$this->is_empty())
{
$del=$this->queue[$this->fornt];
unset($this->queue[$this->fornt++]);
return $del;
}
}
public function is_empty()
{
if($this->fornt===$this->tail)
{
return true;
}
}
public function get_queue()
{
return $this->queue;
}
public function get_length()
{
return count($this->queue);
}
}
?>