php双向队列实例讲解

2022-04-15 12:42:08

1、双向队列是指一种具有队列和栈的性质的数据结构。

2、双向队列中的元素可以从两端弹出,其限定插入和删除操作在表的两端进行。

双向队列就像是一个队列,但是你可以在任何一端添加或移除元素。

实例

<?phpclass DoubleQueue{    public $queue = array();    /**(尾部)入队  **/    public function addLast($value)    {        return array_push($this->queue,$value);    }    /**(尾部)出队**/    public function removeLast()    {         return array_pop($this->queue);     }     /**(头部)入队**/     public function addFirst($value)     {        return array_unshipe=1, $maxlength=0){     $this->_type = in_array($type, array(1,2,3,4,5,6))? $type : 1;     $this->_maxLength = intval($maxlength);   }     /** 前端入列   * @param Mixed  $data 数据   * @return boolean   */   public function frontAdd($data=null){      if($this->_type==3){ // 前端输入限制       return false;     }      if(isset($data) && !$this->isFull()){        array_unshift($this->_queue, $data);        $this->setAddNum(1);        return true;     }     return false;   }    /** 前端出列   * @return Array   */   public function frontRemove(){      if($this->_type==2){ // 前端输出限制       return null;     }      if(!$this->checkRemove(1)){ // 检查是否依赖输入       return null;     }      $data = null;      if($this->getLength()>0){        $data = array_shift($this->_queue);        $this->setRemoveNum(1);     }     return $data;   }    /** 后端入列   * @param Mixed  $data 数据   * @return boolean   */   public function rearAdd($data=null){      if($this->_type==5){ // 后端输入限制       return false;     }      if(isset($data) && !$this->isFull()){        array_push($this->_queue, $data);        $this->setAddNum(2);        return true;    private function checkRemove($endpoint){     if($this->_type==6){       if($endpoint==1){         return $this->_frontNum>0;       }else{         return $this->_rearNum>0;       }     }     return true;   } } // class end ?> 

demo.php示例代码如下:

<?php  require "DEQue.class.php";  // 例子1  $obj = new DEQue(); // 前后端都可以输入,无限长度  $obj->frontAdd('a'); // 前端入列 $obj->rearAdd('b'); // 后端入列 $obj->frontAdd('c'); // 前端入列 $obj->rearAdd('d'); // 后端入列  // 入列后数组应为 cabd  $result = array();  $result[] = $obj->rearRemove(); // 后端出列 $result[] = $obj->rearRemove(); // 后端出列 $result[] = $obj->frontRemove(); // 前端出列 $result[] = $obj->frontRemove(); // 前端出列  print_r($result); // 出列顺序应为 dbca  // 例子2 $obj = new DEQue(3, 5); // 前端只能输出,后端可输入输出,最大长度5  $insert = array(); $insert[] = $obj->rearAdd('a'); $insert[] = $obj->rearAdd('b'); $insert[] = $obj->frontAdd('c'); // 因前端只能输出,因此这里会返回false $insert[] = $obj->rearAdd('d'); $insert[] = $obj->rearAdd('e'); $insert[] = $obj->rearAdd('f'); $insert[] = $obj->rearAdd('g'); // 超过长度,返回false  var_dump($insert);  // 例子3 $obj = new DEQue(6); // 输出依赖输入  $obj->frontAdd('a'); $obj->frontAdd('b'); $obj->frontAdd('c'); $obj->rearAdd('d');  $result = array(); $result[] = $obj->rearRemove(); $result[] = $obj->rearRemove(); // 因为输出依赖输入,这个会返回NULL $result[] = $obj->frontRemove(); $result[] = $obj->frontRemove(); $result[] = $obj->frontRemove();  var_dump($result);  ?> 

以上就是php双向队列实例讲解的详细内容,更多关于php双向队列如何理解的资料请关注我们其它相关文章!

相关文章 大家在看