You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.7 KiB
81 lines
1.7 KiB
package 第01期.mca_test;
|
|
|
|
public class Code05_MinWindowLength {
|
|
|
|
public static int minLength(String s1, String s2) {
|
|
if (s1 == null || s2 == null || s1.length() < s2.length()) {
|
|
return Integer.MAX_VALUE;
|
|
}
|
|
char[] str1 = s1.toCharArray();
|
|
char[] str2 = s2.toCharArray();
|
|
int[] map = new int[256]; // map[37] = 4 37 4次
|
|
for (int i = 0; i != str2.length; i++) {
|
|
map[str2[i]]++;
|
|
}
|
|
int all = str2.length;
|
|
|
|
// [L,R-1] R
|
|
// [L,R) -> [0,0)
|
|
int L = 0;
|
|
int R = 0;
|
|
int minLen = Integer.MAX_VALUE;
|
|
while (R != str1.length) {
|
|
map[str1[R]]--;
|
|
if (map[str1[R]] >= 0) {
|
|
all--;
|
|
}
|
|
if (all == 0) { // 还完了
|
|
while (map[str1[L]] < 0) {
|
|
map[str1[L++]]++;
|
|
}
|
|
// [L..R]
|
|
minLen = Math.min(minLen, R - L + 1);
|
|
all++;
|
|
map[str1[L++]]++;
|
|
}
|
|
R++;
|
|
}
|
|
return minLen == Integer.MAX_VALUE ? 0 : minLen;
|
|
}
|
|
|
|
// 测试链接 : https://leetcode.com/problems/minimum-window-substring/
|
|
public static String minWindow(String s, String t) {
|
|
if (s.length() < t.length()) {
|
|
return "";
|
|
}
|
|
char[] str = s.toCharArray();
|
|
char[] target = t.toCharArray();
|
|
int[] map = new int[256];
|
|
for (char cha : target) {
|
|
map[cha]++;
|
|
}
|
|
int all = target.length;
|
|
int L = 0;
|
|
int R = 0;
|
|
int minLen = Integer.MAX_VALUE;
|
|
int ansl = -1;
|
|
int ansr = -1;
|
|
while (R != str.length) {
|
|
map[str[R]]--;
|
|
if (map[str[R]] >= 0) {
|
|
all--;
|
|
}
|
|
if (all == 0) {
|
|
while (map[str[L]] < 0) {
|
|
map[str[L++]]++;
|
|
}
|
|
if (minLen > R - L + 1) {
|
|
minLen = R - L + 1;
|
|
ansl = L;
|
|
ansr = R;
|
|
}
|
|
all++;
|
|
map[str[L++]]++;
|
|
}
|
|
R++;
|
|
}
|
|
return minLen == Integer.MAX_VALUE ? "" : s.substring(ansl, ansr + 1);
|
|
}
|
|
|
|
}
|