码迷,mamicode.com
首页 > Web开发 > 详细

用 PHP 实现一个双向队列

时间:2016-03-26 21:50:08      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

class DEQueue {
    //存储
    protected $_storage = array();
    
    //入头
    public function unshift($element)
    {
        return array_unshift($this->_storage, $element);
    }
    
    //入尾
    public function push($element)
    {
        return array_push($this->_storage, $element);
    }
    
    //出尾
    public function pop()
    {
        return array_pop($this->_storage);
    }
    
    //出头
    public function shift()
    {
        return array_shift($this->_storage);
    }
    
    //长度
    public function length()
    {
        return count($this->_storage);
    }
}

 

用 PHP 实现一个双向队列

标签:

原文地址:http://www.cnblogs.com/fyy-888/p/5324021.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!