php实现双向队列的代码
程序员文章站
2022-03-25 21:50:02
...
本文和大家分享一小段代码,是关于php实现双向队列的代码,希望能帮助到大家。
<?phpclass Deque { private $queue = array(); public function addFirst($item) { return array_unshift($this->queue, $item); } public function addLast($item) { return array_push($this->queue, $item); } public function removeFirst() { return array_shift($this->queue); } public function removeLast() { return array_pop($this->queue); } }
相关推荐:
以上就是php实现双向队列的代码的详细内容,更多请关注其它相关文章!
上一篇: php反射机制实现插件的设计实例详解
下一篇: CSS中的伪元素及其与伪类的区别示例介绍