forked from xurui1995/Sword-pointing-to-offer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
No22.java
49 lines (40 loc) · 1.1 KB
/
No22.java
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import java.util.Stack;
import javax.sound.sampled.Line;
public class No22 {
/**
* .输入两个整数序列,第一个序列表示栈的压入顺序,
* 请判断第二个序列是否为该栈的弹出顺序。
* 假设压入栈的所有数字均不相等。例如序列1、2、3、4、5是某栈
* 的压栈序列,序列4、5、3、2、1是该压栈序列对应的一个弹出序列
* 但4、3、5、1、2就不可能是该压栈序列的弹出序列
*/
public static void main(String[] args) {
Integer[] pushOrder={1,2,3,4,5};
Integer[] popOrder={4,5,3,1,2};
System.out.println(isRight(pushOrder,popOrder,5));
}
private static boolean isRight(Integer[] pushOrder, Integer[] popOrder, int n) {
Stack<Integer> stack=new Stack<Integer>();
int count=0;
for(int i=0;i<popOrder.length;i++){
if(!stack.isEmpty()&&stack.peek()==popOrder[i])
stack.pop();
else{
if(count==pushOrder.length)
return false;
else{
do{
stack.push(pushOrder[count++]);
}
while(stack.peek()!=popOrder[i]&&count!=pushOrder.length);
if(stack.peek()==popOrder[i])
stack.pop();
else{
return false;
}
}
}
}
return true;
}
}