队列php实现-古蔺大橙子建站
RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
队列php实现

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

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);

}

}

?>


文章题目:队列php实现
网站路径:http://scgulin.cn/article/gdgshj.html