-
Notifications
You must be signed in to change notification settings - Fork 0
/
076.go
64 lines (58 loc) · 1.2 KB
/
076.go
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
package p076
/**
Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n).
For example,
S = "ADOBECODEBANC"
T = "ABC"
Minimum window is "BANC".
Note:
If there is no such window in S that covers all characters in T, return the empty string "".
If there are multiple such windows, you are guaranteed that there will always be only one unique minimum window in S.
*/
func minWindow(s string, t string) string {
tHits := make(map[byte]int)
for i := 0; i < len(t); i++ {
tHits[t[i]]++
}
l, h, hitCounts := 0, 0, 0
ml, mh, mLen := 0, 0, len(s)+1
for h < len(s) || hitCounts >= len(t) {
if hitCounts < len(t) {
for h < len(s) {
if _, ok := tHits[s[h]]; ok {
break
}
h++
}
if h < len(s) {
if tHits[s[h]] > 0 {
hitCounts++
}
tHits[s[h]]--
}
h++
} else {
if v, ok := tHits[s[l]]; ok {
if v >= 0 {
hitCounts--
}
tHits[s[l]]++
l++
}
for l < len(s) {
if _, ok := tHits[s[l]]; ok {
break
}
l++
}
}
if hitCounts == len(t) && (h-l) < mLen {
ml, mh = l, h
mLen = h - l
}
if mh-ml == len(t) {
break
}
}
return string([]byte(s)[ml:mh])
}