码迷,mamicode.com
首页 > 其他好文 > 详细

面试题09. 用两个栈实现队列

时间:2020-05-28 19:43:47      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:试题   tco   head   obj   面试   pre   and   著作权   网络   

地址: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();
 */

 

面试题09. 用两个栈实现队列

标签:试题   tco   head   obj   面试   pre   and   著作权   网络   

原文地址:https://www.cnblogs.com/8013-cmf/p/12983169.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!