php的双向队列类

(deque,全名double-ended queue)是一种具有队列和栈的性质的数据结构。双向队列中的元素可以从两端弹出,其限定插入和删除操作在表的两端进行。

在实际使用中,还可以有输出受限的双向队列(即一个端点允许插入和删除,另一个端点只允许插入的双向队列)和输入受限的双向队列(即一个端点允许插入和删除,另一个端点只允许删除的双向队列)。而如果限定双向队列从某个端点插入的元素只能从该端点删除,则该双向队列就蜕变为两个栈底相邻的栈了。

DEQue.class.php

<?php
/** php 双向队列。支持限定队列长度,输入受限,输出受限,及输出必须与输入同端几种设置
*   Date:   2014-04-30
*   Author: fdipzone
*   Ver:    1.0
*
*   Func:
*   public  frontAdd     前端入列
*   public  frontRemove  前端出列
*   public  rearAdd      后端入列
*   pulbic  rearRemove   后端出列
*   public  clear        清空对列
*   public  isFull       判断对列是否已满
*   private getLength    获取对列长度
*   private setAddNum    记录入列,输出依赖输入时调用
*   private setRemoveNum 记录出列,输出依赖输入时调用
*   private checkRemove  检查是否输出依赖输入
*/

class DEQue{ // class start  

    private $_queue = array(); // 对列
    private $_maxLength = 0;   // 对列最大长度,0表示不限
    private $_type = 0;        // 对列类型
    private $_frontNum = 0;    // 前端插入的数量
    private $_rearNum = 0;     // 后端插入的数量  

    /** 初始化
    * @param $type       对列类型
    *                    1:两端均可输入输出
    *                    2:前端只能输入,后端可输入输出
    *                    3:前端只能输出,后端可输入输出
    *                    4:后端只能输入,前端可输入输出
    *                    5:后端只能输出,前端可输入输出
	* 查看本栏目更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/webkf/PHP/
    *                    6:两端均可输入输出,在哪端输入只能从哪端输出
    * @param $maxlength  对列最大长度
    */
    public function __construct($type=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;  

        }  

        return false;
    }  

    /** 后端出列
    * @return Array
    */
    public function rearRemove(){  

        if($this->_type==4){ // 后端输出限制
            return null;
        }  

        if(!$this->checkRemove(2)){ // 检查是否依赖输入
            return null;
        }  

        $data = null;  

        if($this->getLength()>0){  

            $data = array_pop($this->_queue);  

            $this->setRemoveNum(2);  

        }  

        return $data;  

    }  

    /** 清空对列
    * @return boolean
    */
    public function clear(){
        $this->_queue = array();
        $this->_frontNum = 0;
        $this->_rearNum = 0;
        return true;
    }  

    /** 判断对列是否已满
    * @return boolean
    */
    public function isFull(){
        $bIsFull = false;
        if($this->_maxLength!=0 && $this->_maxLength==$this->getLength()){
            $bIsFull = true;
        }
        return $bIsFull;
    }  

    /** 获取当前对列长度
    * @return int
    */
    private function getLength(){
        return count($this->_queue);
    }  

    /** 记录入列,输出依赖输入时调用
    * @param int $endpoint 端点 1:front 2:rear
    */
    private function setAddNum($endpoint){
        if($this->_type==6){
            if($endpoint==1){
                $this->_frontNum ++;
            }else{
                $this->_rearNum ++;
            }
        }
    }  

    /** 记录出列,输出依赖输入时调用
    * @param int $endpoint 端点 1:front 2:rear
    */
    private function setRemoveNum($endpoint){
        if($this->_type==6){
            if($endpoint==1){
                $this->_frontNum --;
            }else{
                $this->_rearNum --;
            }
        }
    }  

    /** 检查是否输出依赖输入
    * @param int $endpoint 端点 1:front 2:rear
    */
    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
, 队列
, deque
, 元素
, 双向
, 双向循环队列
, 一个
两端
php 队列类、双向队列、java 双向队列、c 双向队列、双向性队列研究,以便于您获取更多的相关知识。

时间: 2024-08-04 03:26:23

php的双向队列类的相关文章

php实现的双向队列类实例

  本文实例讲述了php实现的双向队列类及其用法,对于PHP数据结构与算法的学习有不错的参考价值.分享给大家供大家参考.具体分析如下: (deque,全名double-ended queue)是一种具有队列和栈的性质的数据结构.双向队列中的元素可以从两端弹出,其限定插入和删除操作在表的两端进行. 在实际使用中,还可以有输出受限的双向队列(即一个端点允许插入和删除,另一个端点只允许插入的双向队列)和输入受限的双向队列(即一个端点允许插入和删除,另一个端点只允许删除的双向队列).而如果限定双向队列从

php实现的双向队列类实例_php技巧

本文实例讲述了php实现的双向队列类及其用法,对于PHP数据结构与算法的学习有不错的参考价值.分享给大家供大家参考.具体分析如下: (deque,全名double-ended queue)是一种具有队列和栈的性质的数据结构.双向队列中的元素可以从两端弹出,其限定插入和删除操作在表的两端进行. 在实际使用中,还可以有输出受限的双向队列(即一个端点允许插入和删除,另一个端点只允许插入的双向队列)和输入受限的双向队列(即一个端点允许插入和删除,另一个端点只允许删除的双向队列).而如果限定双向队列从某个

编写一个JAVA的队列类

  根据这些特点,对队列定义了以下六种操作: enq(x) 向队列插入一个值为x的元素; deq() 从队列删除一个元素; front() 从队列中读一个元素,但队列保持不变; empty() 判断队列是否为空,空则返回真; clear() 清空队列; search(x) 查找距队首最近的元素的位置,若不存在,返回-1. Vector类是JAVA中专门负责处理对象元素有序存储和任意增删的类,因此,用Vector 可以快速实现JAVA的队列类. public class Queue extends

linux中编写并发队列类

 这篇文章主要介绍了linux中编写并发队列类,功能有:并发阻塞队列.有超时限制.有大小限制 设计并发队列   代码如下: #include <pthread.h> #include <list> using namespace std;   template <typename T> class Queue  {  public:      Queue( )      {          pthread_mutex_init(&_lock, NULL); 

C++中实现队列类链式存储与栈类链式存储的代码示例_C 语言

队列类链式存储 代码: linkqueue.hpp  // 队列类 #pragma once #include "linklist.hpp" template <typename T> class LinkQueue { public: LinkQueue(); ~LinkQueue(); public: int clear(); int append(T &t); int retieve(T &t); int header(T &t); int l

linux中编写自己的并发队列类(Queue 并发阻塞队列)_linux shell

设计并发队列 复制代码 代码如下: #include <pthread.h>#include <list>using namespace std; template <typename T>class Queue { public:     Queue( )     {         pthread_mutex_init(&_lock, NULL);     }     ~Queue( )     {         pthread_mutex_destroy

.Net中队列类的操作与系统队列类queue的使用

class MyQueue { //存放元素的数组 private object[] _array; //增长因子 private int _growFactor; //队头下标 private int _head; //队尾下标 private int _tail; private int _size; private const int _MinGrow = 4; //初始容量 private const int _ShrikThreadhold = 0x20; public MyQueue

php自己实现memcached的队列类

add('1asdf'); * $obj->getQueueLength(); * $obj->read(11); * $obj->get(8); */ class memcacheQueue{ public static $client; //memcache客户端连接 public $access; //队列是否可更新 private $currentSide; //当前轮值的队列面:A/B private $lastSide; //上一轮值的队列面:A/B private $sid

PHP实现一个双向队列例子

双端队列(deque)是由一些项的表组成的数据结构,对该数据结构可以进行下列操作:     push(D,X) 将项X 插入到双端队列D的前端     pop(D) 从双端队列D中删除前端项并将其返回     inject(D,X) 将项X插入到双端队列D的尾端     eject(D) 从双端队列D中删除尾端项并将其返回 PHP实现代码  代码如下 复制代码 <?php class DoubleQueue  {     public $queue = array();          /**