为乌海海南等地区用户提供了全套网页设计制作服务,及乌海海南网站建设行业解决方案。主营业务为做网站、成都网站制作、乌海海南网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!
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);
}
}
?>