-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathWiggleSubsequence.java
65 lines (57 loc) · 1.85 KB
/
WiggleSubsequence.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
62
63
64
65
/*https://leetcode.com/problems/wiggle-subsequence/*/
/*https://practice.geeksforgeeks.org/problems/longest-alternating-subsequence5951/1/*/
/*Prateekshya*/
/*O(n^2) solution*/
/*
0 -> increase
1 -> decrease
2 -> both
*/
class Solution {
public int wiggleMaxLength(int[] nums) {
int[] length = new int[nums.length];
int[] status = new int[nums.length];
length[0] = 1;
status[0] = 2;
for (int i = 1; i < nums.length; ++i)
{
for (int j = i-1; j >= 0; --j)
{
//if number is greater and the previous number was decreasing, it can be added to the subsequence length
if (nums[i] > nums[j] && (status[j] == 2 || status[j] == 1))
{
status[i] = 0;
length[i] = length[j]+1;
break;
}
//if number is smaller and the previous number was increasing, it can be added to the subsequence length
else if (nums[i] < nums[j] && (status[j] == 2 || status[j] == 0))
{
status[i] = 1;
length[i] = length[j]+1;
break;
}
}
//if length is not updated then it will be same as the previous length
if (length[i] == 0)
{
length[i] = length[i-1];
status[i] = 2; //not necessary
}
}
return length[nums.length-1];
}
}
/*O(n) solution*/
class Solution {
public int wiggleMaxLength(int[] nums) {
int up = 1, down = 1;
for(int i = 1; i < nums.length; i++) {
if(nums[i] > nums[i - 1])
up = down + 1;
else if (nums[i] < nums[i - 1])
down = up + 1;
}
return Math.max(up, down);
}
}