PHP实现双端队列
程序员文章站
2022-04-05 08:33:30
PHP实现双端队列:第一个元素作为队头,最后一个元素作为队尾。
queue,$value);
}
//尾出列
public function r...
PHP实现双端队列:第一个元素作为队头,最后一个元素作为队尾。
queue,$value); } //尾出列 public function removeLast(){ return array_pop($this->queue); } //头入列 public function addFirst($value){ return array_unshift($this->queue,$value); } //头出列 public function removeFirst(){ return array_shift($this->queue); } //清空队列 public function makeEmpty(){ unset($this->queue); } //获取列头 public function getFirst(){ return reset($this->queue); } }
上一篇: 得了相思病就搞笑咯
下一篇: 5G手机什么时候买最划算?