HEX
Server: nginx/1.28.1
System: Linux 10-41-63-61 6.8.0-31-generic #31-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 20 00:40:06 UTC 2024 x86_64
User: www (1001)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/www.oenxbe.com/yu/index.php
<?php

 

 

/**

 * Class Queue

 */

class Queue

{

    /**

     * @var int 队头指针

     */

    private $_front;

 

    /**

     * @var int 队尾指针

     */

    private $_rear;

 

    /**

     * @var array 队列数组

     */

    private $_queue;

 

    /**

     * @var int 队列实际长度

     */

    private $_queueLength;

 

    /**

     * @var int 队列容量;

     */

    private $_queueSize;

 

    /**

     * Queue constructor.初始化队列

     * @param int $capacity 容量(循环队列的最大长度)

     */

    public function __construct($size)

    {

        $this->_queue = [];

        $this->_queueSize = $size;

        $this->_front = 0;

        $this->_rear = 0;

        $this->_queueLength = 0;

    }

 

    /**

     * 销毁队列;

     */

    public function __destruct()

    {

        unset($this->_queue);

    }

 

    /**

     * @method 入队

     * @param mixed $elem 入队的元素

     * @return bool

     */

    public function enQueue($elem)

    {

        if (!$this->isFull()) {

            $this->_queue[$this->_rear] = $elem;

            $this->_rear++;

            $this->_rear = $this->_rear % $this->_queueCapacity;

            $this->_queueLength++;

            return true;

        }

        return false;

    }

 

    /**

     * @method 出队

     * @return mixed|null

     */

    public function deQueue()

    {

        if (!$this->isEmpty()) {

            $elem = $this->_queue[$this->_front];

            //unset($this->_queue[$this->_front]);

            $this->_front++;

            $this->_front %= $this->_queueCapacity;

            $this->_queueLength--;

            return $elem;

        }

        return null;

    }

 

    /**

     * @method 判断队列是否为空;

     * @return bool

     */

    public function isEmpty()

    {

        return $this->_queueLength === 0;

    }

 

    /**

     * @method 判断队列是否饱和;

     * @return bool

     */

    public function isFull()

    {

        return $this->_queueLength === $this->_queueCapacity;

    }

 

    /**

     * @method 遍历队列并输出(测试队列)

     */

    public function outputQueue()

    {

        for ($i = $this->_front; $i < $this->_queueLength + $this->_front; $i++) {

            echo $this->_queue[$i % $this->_queueCapacity].PHP_EOL;

        }

    }

 

    /**

     * @method 清空队列

     */

    public function clearQueue()

    {

        $this->_queue = [];

        $this->_front = 0;

        $this->_rear = 0;

        $this->_queueLength = 0;

    }

}



$a = new Queue(3);

echo 'enQueue1 $a->enQueue(1)'.PHP_EOL;

$a->enQueue(1);

echo 'enQueue2 $a->enQueue(2)'.PHP_EOL;

$a->enQueue(2);

echo 'enQueue3 $a->enQueue(3)'.PHP_EOL;

$a->enQueue(3);

echo 'enQueue4 $a->enQueue(4)'.PHP_EOL;

$a->enQueue(4);     //讲道理是失败的;

$a->outputQueue();      //输出 1 2 3

echo PHP_EOL;

echo PHP_EOL;

echo $a->deQueue();     //输出 1  队列 2 3

echo PHP_EOL;

echo PHP_EOL;

echo $a->deQueue();     //输出 2  队列 3

$a->enQueue(5);         //队列 3 5

echo PHP_EOL;

echo PHP_EOL;

$a->outputQueue();      //输出 3 5

$a->clearQueue();       //队列空;