-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathFind132Pattern.java
61 lines (54 loc) · 1.76 KB
/
Find132Pattern.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
50
51
52
53
54
55
56
57
58
59
60
61
/*
Given a sequence of n integers a1, a2, ..., an, a 132 pattern is a subsequence
ai, aj, ak such that i < j < k and ai < ak < aj. Design an algorithm that takes
a list of n numbers as input and checks whether there is a 132 pattern in the
list.
n will be less than 20,000.
Example
Given nums = [1, 2, 3, 4]
return False // There is no 132 pattern in the sequence.
Given nums = [3, 1, 4, 2]
return True // There is a 132 pattern in the sequence: [1, 4, 2].
*/
public class Find132Pattern {
/*
* @param nums: a list of n integers
* @return: true if there is a 132 pattern or false
*/
public boolean find132pattern(int[] nums) {
if (nums == null) {
return false;
}
Stack<Integer> stack = new Stack<Integer>();
int ak = Integer.MIN_VALUE;
for (int i = nums.length - 1; i >= 0; --i) {
if (nums[i] < ak) {
return true;
}
while (!stack.isEmpty() && nums[i] > stack.peek()) {
ak = stack.pop();
}
stack.push(nums[i]);
}
return false;
}
/*****************************************************************************/
public boolean find132pattern(int[] nums) {
if (nums == null || nums.length < 3) {
return false;
}
int i = 0;
while (i < nums.length) {
for (; i < nums.length - 1 && nums[i] > nums[i + 1]; ++i);
int j = i + 1;
for (; j < nums.length - 1 && nums[j] < nums[j + 1]; ++j);
for (int k = j + 1; k < nums.length; ++k) {
if (nums[i] < nums[k] && nums[k] < nums[j]) {
return true;
}
}
i = j + 1;
}
return false;
}
}