Skip to content

Commit 5d2033a

Browse files
[N-0] refactor 300
1 parent aa54043 commit 5d2033a

File tree

2 files changed

+63
-42
lines changed

2 files changed

+63
-42
lines changed

src/main/java/com/fishercoder/solutions/_300.java

+37-42
Original file line numberDiff line numberDiff line change
@@ -13,52 +13,47 @@
1313
1414
Your algorithm should run in O(n2) complexity.
1515
16-
Follow up: Could you improve it to O(n log n) time complexity?
16+
Follow up: Could you improve it to O(nlogn) time complexity?
1717
*/
1818
public class _300 {
1919

20-
/**
21-
* credit: https://discuss.leetcode.com/topic/28719/short-java-solution-using-dp-o-n-log-n
22-
*
23-
* The idea is that as you iterate the sequence,
24-
* you keep track of the minimum value a subsequence of given length might end with,
25-
* for all so far possible subsequence lengths.
26-
*
27-
* So dp[i] is the minimum value a subsequence of length i+1 might end with.
28-
* Having this info, for each new number we iterate to,
29-
* we can determine the longest subsequence where it can be appended using binary search.
30-
* The final answer is the length of the longest subsequence we found so far.*/
31-
public int lengthOfLIS(int[] nums) {
32-
int[] dp = new int[nums.length];
33-
int len = 0;
34-
for (int x : nums) {
35-
/**Java Doc of this binarySearch API:
36-
* @return index of the search key, if it is contained in the array
37-
* within the specified range;
38-
* otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The
39-
* <i>insertion point</i> is defined as the point at which the
40-
* key would be inserted into the array: the index of the first
41-
* element in the range greater than the key,
42-
* or <tt>toIndex</tt> if all
43-
* elements in the range are less than the specified key. Note
44-
* that this guarantees that the return value will be &gt;= 0 if
45-
* and only if the key is found.*/
46-
int index = Arrays.binarySearch(dp, 0, len, x);
47-
if (index < 0) {
48-
index = -(index + 1);
49-
}
50-
dp[index] = x;
51-
if (index == len) {
52-
len++;
20+
public static class Solution1 {
21+
22+
/**
23+
* credit: https://discuss.leetcode.com/topic/28719/short-java-solution-using-dp-o-n-log-n
24+
* The idea is that as you iterate the sequence,
25+
* you keep track of the minimum value a subsequence of given length might end with,
26+
* for all so far possible subsequence lengths.
27+
* So dp[i] is the minimum value a subsequence of length i+1 might end with.
28+
* Having this info, for each new number we iterate to,
29+
* we can determine the longest subsequence where it can be appended using binary search.
30+
* The final answer is the length of the longest subsequence we found so far.
31+
*/
32+
public int lengthOfLIS(int[] nums) {
33+
int[] dp = new int[nums.length];
34+
int len = 0;
35+
for (int x : nums) {
36+
/**Java Doc of this binarySearch API:
37+
* @return index of the search key, if it is contained in the array
38+
* within the specified range;
39+
* otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The
40+
* <i>insertion point</i> is defined as the point at which the
41+
* key would be inserted into the array: the index of the first
42+
* element in the range greater than the key,
43+
* or <tt>toIndex</tt> if all
44+
* elements in the range are less than the specified key. Note
45+
* that this guarantees that the return value will be &gt;= 0 if
46+
* and only if the key is found.*/
47+
int index = Arrays.binarySearch(dp, 0, len, x);
48+
if (index < 0) {
49+
index = -(index + 1);
50+
}
51+
dp[index] = x;
52+
if (index == len) {
53+
len++;
54+
}
5355
}
56+
return len;
5457
}
55-
return len;
5658
}
57-
58-
public static void main(String... args) {
59-
_300 test = new _300();
60-
int[] nums = new int[]{10, 9, 2, 5, 3, 7, 101, 18};
61-
System.out.println(test.lengthOfLIS(nums));
62-
}
63-
6459
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package com.fishercoder;
2+
3+
import com.fishercoder.solutions._300;
4+
import org.junit.BeforeClass;
5+
import org.junit.Test;
6+
7+
import static junit.framework.Assert.assertEquals;
8+
9+
public class _300Test {
10+
11+
private static _300.Solution1 solution1;
12+
private static int[] nums;
13+
14+
@BeforeClass
15+
public static void setup() {
16+
solution1 = new _300.Solution1();
17+
}
18+
19+
@Test
20+
public void test1() {
21+
nums = new int[]{10, 9, 2, 5, 3, 7, 101, 18};
22+
assertEquals(4, solution1.lengthOfLIS(nums));
23+
24+
}
25+
26+
}

0 commit comments

Comments
 (0)