【剑指offer】面试题31:栈的压入,弹出序列
輸入兩個(gè)整數(shù)序列,第一個(gè)序列表示棧的壓入順序,請(qǐng)判斷第二個(gè)序列是否可能為該棧的彈出順序。假設(shè)壓入棧的所有數(shù)字均不相等。例如序列1,2,3,4,5是某棧的壓入順序,序列4,5,3,2,1是該壓棧序列對(duì)應(yīng)的一個(gè)彈出序列,但4,3,5,1,2就不可能是該壓棧序列的彈出序列。(注意:這兩個(gè)序列的長(zhǎng)度是相等的)
代碼:
package offer;
import java.util.Stack;
public class ti31 {
?? ?static boolean IsPopOrder(int push[],int pop[])
?? ?{
?? ??? ?Stack<Integer> stack = new Stack<Integer>();
?? ??? ?int x = 0;
?? ??? ?int i = 0;
?? ??? ?while(x<=pop.length-1)
?? ??? ?{
?? ??? ??? ?if(stack.empty()&&i<push.length)
?? ??? ??? ?{
?? ??? ??? ??? ?stack.add(push[i]);
?? ??? ??? ??? ?i++;
?? ??? ??? ?}
?? ??? ??? ?while(!stack.empty()&&pop[x]==stack.peek())
?? ??? ??? ?{
?? ??? ??? ??? ?stack.pop();
?? ??? ??? ??? ?x++;
?? ??? ??? ?}
?? ??? ??? ?if(!stack.empty()&&pop[x]!=stack.peek())
?? ??? ??? ?{
?? ??? ??? ??? ?if(i<push.length)
?? ??? ??? ??? ?{
?? ??? ??? ??? ??? ?stack.add(push[i]);
?? ??? ??? ??? ??? ?i++;
?? ??? ??? ??? ?}
?? ??? ??? ??? ?else
?? ??? ??? ??? ?{
?? ??? ??? ??? ??? ?return false;
?? ??? ??? ??? ?}
?? ??? ??? ?}
?? ??? ?}
?? ??? ?return true;
?? ?}
?? ?public static void main(String[] args)
?? ?{
?? ??? ?int push[] = {1,2,3,4,5};
?? ??? ?int pop[] = {4,5,3,2,1};
?? ??? ?System.out.println(IsPopOrder(push,pop));
?? ?}
}
?
總結(jié)
以上是生活随笔為你收集整理的【剑指offer】面试题31:栈的压入,弹出序列的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: Mybatis中example的使用
- 下一篇: 【剑指offer】面试题66:构建乘积数