forked from DreamCats/java-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathT21.java
More file actions
29 lines (27 loc) · 1.01 KB
/
T21.java
File metadata and controls
29 lines (27 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package web; /**
* @program LeetNiu
* @description: 栈的压入、弹出序列
* @author: mf
* @create: 2020/01/12 23:39
*/
import java.util.Stack;
/**
*输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否可能为该栈的弹出顺序。
* 假设压入栈的所有数字均不相等。例如序列1,2,3,4,5是某栈的压入顺序,序列4,5,3,2,1是该压栈序列对应的一个弹出序列,
* 但4,3,5,1,2就不可能是该压栈序列的弹出序列。(注意:这两个序列的长度是相等的)
*/
public class T21 {
public boolean IsPopOrder(int [] pushA,int [] popA) {
if (pushA == null || popA == null) return false;
int p = 0;
Stack<Integer> stack = new Stack<>();
for (int i = 0; i < pushA.length; i++) {
stack.push(pushA[i]);
while (!stack.isEmpty() && stack.peek() == popA[p]) {
stack.pop();
p++;
}
}
return stack.isEmpty();
}
}