給定 pushed 和 popped 兩個序列,只有當它們多是在最初空棧上進行的推入 push 和彈出 pop 操做序列的結果時,返回 true;不然,返回 false 。數組
示例 1: 輸入:pushed = [1,2,3,4,5], popped = [4,5,3,2,1] 輸出:true 解釋:咱們能夠按如下順序執行: push(1), push(2), push(3), push(4), pop() -> 4, push(5), pop() -> 5, pop() -> 3, pop() -> 2, pop() -> 1 示例 2: 輸入:pushed = [1,2,3,4,5], popped = [4,3,5,1,2] 輸出:false 解釋:1 不能在 2 以前彈出。 提示: 0 <= pushed.length == popped.length <= 1000 0 <= pushed[i], popped[i] < 1000 pushed 是 popped 的排列。
對\(pushed元素 push到stack數組變量中,當\)stack棧頂=\(popped棧尾,pop出去,同時移出\)popped棧尾(貪婪匹配)。spa
<? class Solution { /** * @param Integer[] $pushed * @param Integer[] $popped * @return Boolean */ function validateStackSequences($pushed, $popped) { $stack = []; foreach($pushed as $v){ $stack[] = $v; while( $stack && current($popped)==end($stack)){ array_pop($stack); array_shift($popped); } } if( $stack ) return false; return true; } }
執行結果:經過 顯示詳情code
執行用時 :28 ms, 在全部 PHP 提交中擊敗了100.00%的用戶內存
內存消耗 :14.7 MB, 在全部 PHP 提交中擊敗了100.00%的用戶leetcode