zoukankan      html  css  js  c++  java
  • 面试题09. 用两个栈实现队列

    地址:https://leetcode-cn.com/problems/yong-liang-ge-zhan-shi-xian-dui-lie-lcof/

    <?php
    /**
    用两个栈实现一个队列。队列的声明如下,请实现它的两个函数 appendTail 和 deleteHead ,分别完成在队列尾部插入整数和在队列头部删除整数的功能。(若队列中没有元素,deleteHead 操作返回 -1 )
    
     
    
    示例 1:
    
    输入:
    ["CQueue","appendTail","deleteHead","deleteHead"]
    [[],[3],[],[]]
    输出:[null,null,3,-1]
    示例 2:
    
    输入:
    ["CQueue","deleteHead","appendTail","appendTail","deleteHead","deleteHead"]
    [[],[],[5],[2],[],[]]
    
    来源:力扣(LeetCode)
    链接:https://leetcode-cn.com/problems/yong-liang-ge-zhan-shi-xian-dui-lie-lcof
    著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
     */
    class CQueue {
        /**
         */
        private $stack_push;
        private $stack_pop;
        function __construct() {
            $this->stack_push = new SplStack();
            $this->stack_pop = new SplStack();
        }
    
        /**
         * @param Integer $value
         * @return NULL
         */
        function appendTail($value) {
            $this->stack_push->push($value);
        }
    
        /**
         * @return Integer
         */
        function deleteHead() {
            if($this->stack_pop->isEmpty()){
                $this->shift();
            }
            if($this->stack_pop->isEmpty()) return -1;
            return $this->stack_pop->pop();
        }
    
        function shift(){
            while(!$this->stack_push->isEmpty()){
                $this->stack_pop->push($this->stack_push->pop());
            }
        }
    }
    
    /**
     * Your CQueue object will be instantiated and called as such:
     * $obj = CQueue();
     * $obj->appendTail($value);
     * $ret_2 = $obj->deleteHead();
     */
  • 相关阅读:
    自定义一个运行时异常
    对象的知识点正确解释
    decimal模块
    B+树
    Web框架系列之Tornado
    初识git
    Mysql表的操作
    MySQl创建用户和授权
    MySql安装和基本管理
    为什么用Mysql?
  • 原文地址:https://www.cnblogs.com/8013-cmf/p/12983169.html
Copyright © 2011-2022 走看看