-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsmallestwindowthatcontainallchar.java
62 lines (49 loc) · 1.31 KB
/
smallestwindowthatcontainallchar.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
package strings;
import java.util.HashMap;
import java.util.HashSet;
public class smallestwindowthatcontainallchar {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println(smallestwindow("GEEKSGEEKSFOR"));
// System.out.println(smallestwindow("abcd"));
// System.out.println(smallestwindow("aabbcdab"));
}
public static int smallestwindow(String s) {
// add al unique characters to hashset
HashSet<Character> map = new HashSet<>();
for (int i = 0; i < s.length(); i++) {
map.add(s.charAt(i));
}
int count = map.size();
if (s.length() == count) {
return count;
}
HashMap<Character, Integer> map2 = new HashMap<>();
int i = 0, j = 0, distinct = 0, minlength = Integer.MAX_VALUE;
int mini = 0, minj = 0;
while (i <= j && j < s.length()) {
// acquire
while (map2.size() < count) {
char ch = s.charAt(j);
map2.put(ch, map2.getOrDefault(ch, 0) + 1);
j++;
}
// collect ans and release
while (map2.size() == count) {
if (minlength > (j - i)) {
minlength = j - i;
minj = j;
mini = i;
}
char ch = s.charAt(i);
if (map2.get(ch) == 1) {
map2.remove(ch);
} else
map2.replace(ch, map2.get(ch) - 1);
i++;
}
}
System.out.println(s.substring(mini, minj));
return minlength;
}
}