forked from moranzcw/LeetCode-NOTES
-
Notifications
You must be signed in to change notification settings - Fork 0
/
solution.cpp
66 lines (56 loc) · 1.52 KB
/
solution.cpp
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
65
66
#define INT_MAX 0x7fffffff
class Solution
{
private:
int count1[256];
int count2[256];
public:
string minWindow(string S, string T)
{
if (T.size() == 0 || S.size() == 0)
return "";
memset(count1, 0, sizeof(count1));
memset(count2, 0, sizeof(count2));
for(int i = 0; i < T.size(); i++)
{
count1[T[i]]++;
count2[T[i]]++;
}
int count = T.size();
int start = 0;
int minSize = INT_MAX;
int minStart;
for(int end = 0; end < S.size(); end++)
{
if (count2[S[end]] > 0)
{
count1[S[end]]--;
if (count1[S[end]] >= 0)
count--;
}
if (count == 0)
{
while(true)
{
if (count2[S[start]] > 0)
{
if (count1[S[start]] < 0)
count1[S[start]]++;
else
break;
}
start++;
}
if (minSize > end - start + 1)
{
minSize = end - start + 1;
minStart = start;
}
}
}
if (minSize == INT_MAX)
return "";
string ret(S, minStart, minSize);
return ret;
}
};