import java.util.*; public class Main { public static void main(String[] args) { int[] pushA = new int[]{1,2,3,4,5}; int[] popA = new int[]{4,5,3,2,1}; Boolean returnvalue = IsPopOrder(pushA, popA); if (returnvalue == true) { System.out.print("Yes it is one of the popA"); }else { System.out.print("No it is not one of the popA"); } } public static boolean IsPopOrder(int[] pushA, int[] popA) { Stack<Integer> stack = new Stack<Integer>(); //用于标识弹出序列的位置 int popIndex = 0; for (int i = 0; i < pushA.length; i++) { //把数压入栈。 stack.push(pushA[i]); //如果栈不为空,且获取到的栈顶元素等于弹出序列 while (!stack.empty() && stack.peek() == popA[popIndex]) { //出栈 stack.pop(); //弹出序列向后一位 popIndex++; } } return stack.isEmpty(); } }
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/116067.html