PHP code implements two-way queue

小云云
Release: 2023-03-21 21:26:01
Original
1504 people have browsed it

This article mainly shares with you the php code to implement a two-way queue. It is mainly shared with you in the form of code. I hope it can help you.

<?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);
    }
}
Copy after login

Related recommendations:

php code to implement two-way queue

Detailed introduction to two-way queue

php Two-way queue class

The above is the detailed content of PHP code implements two-way queue. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!