dongyue6199 2013-11-26 06:50
浏览 39
已采纳

PHP堆栈实现

I want to construct a stack implemented in PHP. Initially I have this code:

class Stack
{
    protected $stack;
    protected $limit;

    public function __construct($limit = 10) {
        // initialize the stack
        $this->stack = array();
        // stack can only contain this many items
        $this->limit = $limit;
    }

    public function push($item) {
        // trap for stack overflow
        if (count($this->stack) < $this->limit) {
            // prepend item to the start of the array
            array_unshift($this->stack, $item);
        } else {
            throw new RunTimeException('Stack is full!');
        }
    }

    public function pop() {
        if ($this->isEmpty()) {
            // trap for stack underflow
          throw new RunTimeException('Stack is empty!');
      } else {
            // pop item from the start of the array
            return array_shift($this->stack);
        }
    }

    public function top() {
        return current($this->stack);
    }

    public function isEmpty() {
        return empty($this->stack);
    }
}

And initialize the class normally using this:

$stack = new Stack();
$stack->push(1);
$stack->push(2);
$stack->push(3);
$stack->push(4);
$stack->push(5);

This is correct and running. However, I want to initialize my stack with an initial value like this:

$stack = new Stack(array(1,2,3,4,5));

How can I implement this?


Note that all other functions (e.g pop and push) are functional.

  • 写回答

5条回答 默认 最新

  • dprxj1995 2013-11-26 07:00
    关注

    Change your constructor as follows:

    <?php
    
    class Stack {
    
        protected $stack;
        protected $limit;
    
        public function __construct($limit = 10, $initial = array()) {
            // initialize the stack
            $this->stack = $initial;
            // stack can only contain this many items
            $this->limit = $limit;
        }
    
        public function push($item) {
            // trap for stack overflow
            if (count($this->stack) < $this->limit) {
                // prepend item to the start of the array
                array_unshift($this->stack, $item);
            } else {
                throw new RunTimeException('Stack is full!');
            }
        }
    
        public function pop() {
            if ($this->isEmpty()) {
                // trap for stack underflow
                throw new RunTimeException('Stack is empty!');
            } else {
                // pop item from the start of the array
                return array_shift($this->stack);
            }
        }
    
        public function top() {
            return current($this->stack);
        }
    
        public function isEmpty() {
            return empty($this->stack);
        }
    
    }
    
    /**
     * This'll work as expected.
     */
    $stack = new Stack();
    $stack->push(1);
    $stack->push(2);
    $stack->push(3);
    $stack->push(4);
    $stack->push(5);
    
    /**
     * And this too.
     */
    $stack = new Stack(10, array(1, 2, 3, 4, 5));
    

    Just FYI, PHP has array_push (http://php.net/manual/en/function.array-push.php) and array_pop (http://us3.php.net/array_pop) implementations.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?