mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
<p>给定 <code>pushed</code> 和 <code>popped</code> 两个序列,每个序列中的 <strong>值都不重复</strong>,只有当它们可能是在最初空栈上进行的推入 push 和弹出 pop 操作序列的结果时,返回 <code>true</code>;否则,返回 <code>false</code> 。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>pushed = [1,2,3,4,5], popped = [4,5,3,2,1]
|
||
<strong>输出:</strong>true
|
||
<strong>解释:</strong>我们可以按以下顺序执行:
|
||
push(1), push(2), push(3), push(4), pop() -> 4,
|
||
push(5), pop() -> 5, pop() -> 3, pop() -> 2, pop() -> 1
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>pushed = [1,2,3,4,5], popped = [4,3,5,1,2]
|
||
<strong>输出:</strong>false
|
||
<strong>解释:</strong>1 不能在 2 之前弹出。
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= pushed.length <= 1000</code></li>
|
||
<li><code>0 <= pushed[i] <= 1000</code></li>
|
||
<li><code>pushed</code> 的所有元素 <strong>互不相同</strong></li>
|
||
<li><code>popped.length == pushed.length</code></li>
|
||
<li><code>popped</code> 是 <code>pushed</code> 的一个排列</li>
|
||
</ul>
|