栈的压入、弹出序列

  • 输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否为该栈的弹出顺序。假设压入栈的全部数字均不相等。例如序列1,2,3,4,5是某栈的压入顺序,序列4,5,3,2,1是该压栈序列对应的一个弹出序列,但4,3,5,1,2就不多是该压栈序列的弹出序列。(注意:这两个序列的长度是相等的)
import java.util.ArrayList;
import java.util.Stack;
public class Solution {
	public boolean IsPopOrder(int[] pushA, int[] popA) {
		Stack<Integer> stack = new Stack<Integer>();
		int len = pushA.length;
		if (len == 0)
			return true;
		int curr;
		int index = 0;
		for (int i = 0; i < len; ++i) {
			curr = popA[i];
			while (stack.empty() || stack.peek() != curr) {
				if (index == len)
					return false;
				stack.push(pushA[index++]);
			}
			stack.pop();
		}
		return true;
	}
}
相关文章
相关标签/搜索