-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNo76MinimumWindowSubstring.java
59 lines (54 loc) · 1.64 KB
/
No76MinimumWindowSubstring.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
package com.wzx.leetcode;
import java.util.HashMap;
import java.util.Map;
/**
* @author wzx
* @see <a href="https://leetcode.com/problems/minimum-window-substring/">https://leetcode.com/problems/minimum-window-substring/</a>
*/
public class No76MinimumWindowSubstring {
/**
* 滑动窗口
* <p>
* time: O(n)
* space: O(n)
*/
public String minWindow(String s, String t) {
// 字符串t:要包含的字符
Map<Character, Integer> target = new HashMap<>();
for (char ch : t.toCharArray()) {
target.merge(ch, 1, Integer::sum);
}
// 保存最小窗口
int begin = 0, len = Integer.MAX_VALUE;
// 窗口中合法字符数
int valid = 0;
// 窗口中已经包含的字符
Map<Character, Integer> window = new HashMap<>();
int left = 0;
for (int right = 0; right < s.length(); right++) {
char rightCh = s.charAt(right);
if (!target.containsKey(rightCh)) continue;
// 向右拓展window
window.merge(rightCh, 1, Integer::sum);
if (window.get(rightCh).equals(target.get(rightCh))) valid++;
while (left <= right && valid == target.size()) {
char leftCh = s.charAt(left);
// 更新最小窗口
if (right - left + 1 < len) {
begin = left;
len = right - left + 1;
}
left++;
if (!target.containsKey(leftCh)) continue;
// 向左缩减window
if (window.get(leftCh).equals(target.get(leftCh))) valid--;
window.compute(leftCh, (ch, num) -> num - 1);
}
}
if (len == Integer.MAX_VALUE) {
return "";
} else {
return s.substring(begin, begin + len);
}
}
}