栈与队列

定义

栈是一种操作受限的线性表,只支持在栈顶入栈(push)和出栈(pop)操作,有后进先出的特性。可用数组或链表实现。

时间复杂度

入栈:O(1)
出栈:O(1)


队列

定义

队列是一种操作受限的线性表,只支持在队头出队(dequeue)、队尾入队(enqueue)操作,有先进先出的特性。可用数组或链表实现。

时间复杂度

入队:O(1)
出队:O(1)

各种队列介绍

  1. 循环队列
    长的像个环,比如插入操作,当前状态:n=8,head=3,tail=7。插入新元素后,tail后移,变为0。
    在实现上和非循环队列相比如下:

    类型 队空 队满
    非循环队列 head==tail tail==n
    循环队列 head==tail (tail+1)%n==head

    实现:

/**
 * 循环队列
 * Class CircularQueue
 */
class CircularQueue
{
    private $items = [];
    private $n = 0;
    private $head = 0;
    private $tail = 0;

    public function __construct($n)
    {
        $this->n = $n;
    }

    /**
     * 入队
     * @param $v
     * @return bool
     */
    public function enqueue($v)
    {
        // 队列满了
        if (($this->tail + 1) % $this->n == $this->head) {
            return false;
        }

        $this->items[$this->tail] = $v;
        $this->tail = ($this->tail + 1) % $this->n;
        return true;
    }

    /**
     * 出队
     * @return mixed|null
     */
    public function dequeue()
    {
        // 队列空了
        if ($this->head == $this->tail) {
            return null;
        }

        $v = $this->items[$this->head];
        $this->head = ($this->head + 1) % $this->n;
        return $v;
    }
}
  1. 阻塞队列
    入队、出队操作可以阻塞。

    队列为空时,从队头取数据会被阻塞,直到队列中有数据了才返回;
    队列已满,插入数据会被阻塞,直到队列中有空闲位置后再插入数据,再返回。

  2. 并发队列
    队列的操作多线程安全。

    最简单的实现方法就是在入队、出队的方法上加锁,同一时刻仅允许一个存或取操作,但是这样锁的粒度大,并发度比较低。

    基于数组的循环队列(避免数据搬移),利用 CAS(Compare And Swap 避免真正的去OS底层申请锁资源)原子操作,可实现高效的无锁并发队列。


算法编程

  1. 请你仅使用两个栈实现先入先出队列。队列应当支持一般队列支持的所有操作(push、pop、peek、empty)。

    • 思路:第一个栈接收push数据,需要pop时,把所有数据依次弹出到第二个栈,这样第二个栈里的元素就是倒序的了,只要第二个栈不空,则可对第二个栈进行pop、peek操作,如果第二个栈为空,则再将第一个栈的数据依次弹出到第二个栈。判空则是两个栈都为空才为空。

    答:

class MyQueue {

    private $s1;
    private $s2;

    /**
     * Initialize your data structure here.
     */
    function __construct() {
        $this->s1 = [];
        $this->s2 = [];
    }

    /**
     * Push element x to the back of queue.
     * @param Integer $x
     * @return NULL
     */
    function push($x) {
        array_push($this->s1, $x);
    }

    /**
     * Removes the element from in front of queue and returns that element.
     * @return Integer
     */
    function pop() {
        if (!empty($this->s2)) {
            return array_pop($this->s2);
        }
        while (!empty($this->s1)) {
            $x = array_pop($this->s1);
            array_push($this->s2, $x);
        }
        return array_pop($this->s2);
    }

    /**
     * Get the front element.
     * @return Integer
     */
    function peek() {
        if (!empty($this->s2)) {
            return end($this->s2);
        }
        while (!empty($this->s1)) {
            $x = array_pop($this->s1);
            array_push($this->s2, $x);
        }
        return end($this->s2);
    }

    /**
     * Returns whether the queue is empty.
     * @return Boolean
     */
    function empty() {
        return empty($this->s1) && empty($this->s2);
    }
}
  1. 请你仅使用两个队列实现一个后入先出(LIFO)的栈,并支持普通栈的全部四种操作(push、top、pop 和 empty)。

    • 思路:push数据时,push到不为空的那个队列,pop时将不为空的队列数据依次弹出到另一个为空的队列,直到不为空的队列数据剩下一个,然后弹出即可。

    答:

class MyStack {

    private $q1;
    private $q2;

    /**
     * Initialize your data structure here.
     */
    function __construct() {
        $this->q1 = [];
        $this->q2 = [];
    }

    /**
     * Push element x onto stack.
     * @param Integer $x
     * @return NULL
     */
    function push($x) {
        if (empty($this->q1)) {
            array_unshift($this->q2, $x);
        } else {
            array_unshift($this->q1, $x);
        }
    }

    /**
     * Removes the element on top of the stack and returns that element.
     * @return Integer
     */
    function pop() {
        if (empty($this->q2)) {
            while (count($this->q1) > 1) {
                $x = array_pop($this->q1);
                array_unshift($this->q2, $x);
            }
            return array_pop($this->q1);
        }
        if (empty($this->q1)) {
            while (count($this->q2) > 1) {
                $x = array_pop($this->q2);
                array_unshift($this->q1, $x);
            }
            return array_pop($this->q2);
        }
    }

    /**
     * Get the top element.
     * @return Integer
     */
    function top() {
        if (empty($this->q2)) {
            while (count($this->q1) > 0) {
                if (count($this->q1) == 1) {
                    $top = $this->q1[0];
                }
                $x = array_pop($this->q1);
                array_unshift($this->q2, $x);
            }
            return $top;
        }
        if (empty($this->q1)) {
            while (count($this->q2) > 0) {
                if (count($this->q2) == 1) {
                    $top = $this->q2[0];
                }
                $x = array_pop($this->q2);
                array_unshift($this->q1, $x);
            }
            return $top;
        }
    }

    /**
     * Returns whether the stack is empty.
     * @return Boolean
     */
    function empty() {
        return empty($this->q1) && empty($this->q2);
    }
}
  1. 给你一个整数数组 nums,有一个大小为 k 的滑动窗口从数组的最左侧移动到数组的最右侧。你只可以看到在滑动窗口内的 k 个数字。滑动窗口每次只向右移动一位。返回滑动窗口中的最大值。
    答:
class Solution {

    /**
     * @param Integer[] $nums
     * @param Integer $k
     * @return Integer[]
     */
    function maxSlidingWindow($nums, $k) {
        if (empty($nums) || count($nums) < 2 || $k == 0) {
            return $nums;
        }
        $window = new spldoublylinkedlist();
        $res = [];
        
        foreach ($nums as $i => $v) {
            while (!$window->isEmpty() && $nums[$window->top()] <= $v) {
                $window->pop();
            }
            $window->push($i);
            if ($window->bottom() <= $i - $k) {
                $window->shift();
            }
            if ($i >= $k - 1) {
                $res[] = $nums[$window->bottom()];
            }
        }
        return $res;
    }
}
  1. 给定一个只包括 '(',')','{','}','[',']' 的字符串 s ,判断字符串是否有效。
    有效字符串需满足:
    1. 左括号必须用相同类型的右括号闭合。
    2. 左括号必须以正确的顺序闭合。
class Solution {

    /**
     * @param String $s
     * @return Boolean
     */
    function isValid($s) {
        $stack = [];
        $map = [')' => '(', ']' => '[', '}' => '{'];

        $i = 0;
        while (!empty($s[$i])) {
            if (in_array($s[$i], $map)) {
                array_push($stack, $s[$i]);
            } else if (array_pop($stack) != $map[$s[$i]]) {
                return false;
            }
            $i++;
        }

        return empty($stack);
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,590评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,808评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,151评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,779评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,773评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,656评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,022评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,678评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,038评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,756评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,411评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,005评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,973评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,053评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,495评论 2 343

推荐阅读更多精彩内容