|
1 | 1 | package com.fishercoder.solutions;
|
2 | 2 |
|
3 | 3 | /**
|
| 4 | + * 76. Minimum Window Substring |
| 5 | + * |
4 | 6 | * 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).
|
5 | 7 |
|
6 | 8 | For example,
|
7 | 9 | S = "ADOBECODEBANC"
|
8 | 10 | T = "ABC"
|
| 11 | +
|
9 | 12 | Minimum window is "BANC".
|
10 | 13 |
|
11 | 14 | Note:
|
12 |
| - If there is no such window in S that covers all characters in T, return the empty string "". |
13 | 15 |
|
| 16 | + If there is no such window in S that covers all characters in T, return the empty string "". |
14 | 17 | If there are multiple such windows, you are guaranteed that there will always be only one unique minimum window in S.
|
15 | 18 | */
|
| 19 | + |
16 | 20 | public class _76 {
|
17 | 21 |
|
| 22 | + public static class Solution1 { |
18 | 23 | public String minWindow(String s, String t) {
|
19 |
| - int[] counts = new int[256]; |
20 |
| - for (char c : t.toCharArray()) { |
21 |
| - counts[c]++; |
| 24 | + int[] counts = new int[256]; |
| 25 | + for (char c : t.toCharArray()) { |
| 26 | + counts[c]++; |
| 27 | + } |
| 28 | + |
| 29 | + int start = 0; |
| 30 | + int end = 0; |
| 31 | + int minStart = 0; |
| 32 | + int minLen = Integer.MAX_VALUE; |
| 33 | + int counter = t.length(); |
| 34 | + while (end < s.length()) { |
| 35 | + if (counts[s.charAt(end)] > 0) { |
| 36 | + counter--; |
22 | 37 | }
|
23 | 38 |
|
24 |
| - int start = 0; |
25 |
| - int end = 0; |
26 |
| - int minStart = 0; |
27 |
| - int minLen = Integer.MAX_VALUE; |
28 |
| - int counter = t.length(); |
29 |
| - while (end < s.length()) { |
30 |
| - if (counts[s.charAt(end)] > 0) { |
31 |
| - counter--; |
32 |
| - } |
33 |
| - |
34 |
| - counts[s.charAt(end)]--; |
35 |
| - end++; |
36 |
| - |
37 |
| - while (counter == 0) { |
38 |
| - if (end - start < minLen) { |
39 |
| - minStart = start; |
40 |
| - minLen = end - start; |
41 |
| - } |
42 |
| - counts[s.charAt(start)]++; |
43 |
| - if (counts[s.charAt(start)] > 0) { |
44 |
| - counter++; |
45 |
| - } |
46 |
| - start++; |
47 |
| - } |
| 39 | + counts[s.charAt(end)]--; |
| 40 | + end++; |
| 41 | + |
| 42 | + while (counter == 0) { |
| 43 | + if (end - start < minLen) { |
| 44 | + minStart = start; |
| 45 | + minLen = end - start; |
| 46 | + } |
| 47 | + counts[s.charAt(start)]++; |
| 48 | + if (counts[s.charAt(start)] > 0) { |
| 49 | + counter++; |
| 50 | + } |
| 51 | + start++; |
48 | 52 | }
|
| 53 | + } |
49 | 54 |
|
50 |
| - if (minLen == Integer.MAX_VALUE) { |
51 |
| - return ""; |
52 |
| - } |
53 |
| - return s.substring(minStart, minStart + minLen); |
| 55 | + if (minLen == Integer.MAX_VALUE) { |
| 56 | + return ""; |
| 57 | + } |
| 58 | + return s.substring(minStart, minStart + minLen); |
54 | 59 | }
|
55 |
| - |
| 60 | + } |
56 | 61 | }
|
0 commit comments