java最小子串覆盖

阅读: 评论:0

java最小子串覆盖

java最小子串覆盖

题目

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 emtpy string "". If there are multiple such windows, you are guaranteed that there will always be only one unique minimum window in S.

思路

我的思路倒是和正确的思路是一样的

双指针思想,尾指针不断往后扫,当扫到有一个窗口包含了所有T的字符,然后再收缩头指针,直到不能再收缩为止。最后记录所有可能的情况中窗口最小的

但是为什么这个想法是对的呢?

另外注意一下自己的那个contains方法,如果是全扫的话容易超时,LeetOJ明显不是按复杂度来算的。

代码

public class Solution {

Map map = new HashMap();

public String minWindow(String S, String T) {

int i = 0;

int j = 0;

int[] count = new int[128];

int minWindows = Integer.MAX_VALUE;

String minWindowString="";

for (char c : T.toCharArray()) {

if (!ainsKey(c)) {

map.put(c, 0);

}

map.put(c, (c) + 1);

}

for (; j < S.length(); j++) {

if (contain(count, T)) {

for (; i <= j; i++) {

if (!contain(count, T)) {

break;

} else {

if(minWindows > j-i) {

minWindows = j-i;

minWindowString = S.substring(i,j);

}

}

// contains i in this iteration

count[S.charAt(i)]--;

}

}

// do not contains j in this iteration

count[S.charAt(j)]++;

}

for (; i < j; i++) {

if (!contain(count, T)) {

break;

} else {

if(minWindows > j-i) {

minWindows = j-i;

minWindowString = S.substring(i,j);

}

}

count[S.charAt(i)]--;

}

// System.out.println(minWindowString);

if (i == 0) {

return "";

}

return minWindowString;

}

private boolean contain(int[] count, String t) {

for (char character : map.keySet()) {

if (count[character] < (character)) {

return false;

}

}

return true;

}

}

本文发布于:2024-01-29 15:33:51,感谢您对本站的认可!

本文链接:https://www.4u4v.net/it/170651363516277.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:小子   java
留言与评论(共有 0 条评论)
   
验证码:

Copyright ©2019-2022 Comsenz Inc.Powered by ©

网站地图1 网站地图2 网站地图3 网站地图4 网站地图5 网站地图6 网站地图7 网站地图8 网站地图9 网站地图10 网站地图11 网站地图12 网站地图13 网站地图14 网站地图15 网站地图16 网站地图17 网站地图18 网站地图19 网站地图20 网站地图21 网站地图22/a> 网站地图23