剑指Offer打卡day39 —— Acwing 42. 栈的压入弹出序列
Posted Johnny*
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指Offer打卡day39 —— Acwing 42. 栈的压入弹出序列相关的知识,希望对你有一定的参考价值。
【题目描述】
【思路】
可以发现序列的操作是唯一的
操作1:当栈stk为空时,stk只能压入元素。
操作2:当栈stk的栈顶元素与弹出序列元素相同时,stk必须弹出栈顶元素。
class Solution {
public boolean isPopOrder(int [] pushV,int [] popV) {
if( pushV.length != popV.length ) return false;
Stack<Integer> stk = new Stack<>();
int index = 0;//弹出序列指针
for(int i = 0; i < pushV.length; i ++){
stk.push(pushV[i]);
while( !stk.isEmpty() && stk.peek() == popV[index]){//元素值与弹出序列相同
//栈顶元素弹出
stk.pop();
index ++;
}
}
if( stk.isEmpty() ) return true;
return false;
}
}
以上是关于剑指Offer打卡day39 —— Acwing 42. 栈的压入弹出序列的主要内容,如果未能解决你的问题,请参考以下文章
剑指Offer打卡day42—— Acwing 62. 丑数
剑指Offer打卡day42——AcWing 77. 翻转单词顺序
剑指Offer打卡day42—— ACWing 81. 扑克牌的顺子