lintcode 中等题:minimum window substring 最小子串覆盖

题目

最小子串覆盖

给定一个字符串source和一个目标字符串target,在字符串source中找到包括所有目标字符串字母的子串。

样例

给出source = "ADOBECODEBANC",target = "ABC" 满足要求的解  "BANC"

注意

如果在source中没有这样的子串,返回"",如果有多个这样的子串,返回起始位置最小的子串。

挑战

要求时间复杂度为O(n)

说明

在答案的子串中的字母在目标字符串中是否需要具有相同的顺序?

——不需要。

解题

参考:

定义两个字典:tgt 、map

tgt统计target中每个字符出现的次数

map统计target和source出现的公共字符个数

再检测当tgt中所以的字符和map中的字符个数都匹配的时候就是一个子串了,再找出最小的子串就好了,程序中left值用来定义子串的右边界,要好好理解

public class Solution {
    /**
     * @param source: A string
     * @param target: A string
     * @return: A string denote the minimum window
     *          Return "" if there is no such a string
     */
    public String minWindow(String source, String target) {
        // write your code
        int len1 = source.length();
        int len2 = target.length();
        if(len1 < len2)
            return "";
        String result = "";
        // 统计target 中各个字符串出现的次数
        HashMap<Character,Integer> tgt = new HashMap<Character,Integer>();
        for(int i=0;i<len2;i++){
            char c = target.charAt(i);
            if(tgt.containsKey(c)){
                tgt.put(c,tgt.get(c)+1);
            }else{
                tgt.put(c,1);
            }
        }
        // 存放公共字符 
        HashMap<Character,Integer> map = new HashMap<Character,Integer>();
        int left = 0;
        int minLen = len1+1;
        int count =0;
        for(int i=0;i<len1;i++){
            char c = source.charAt(i);
            if(tgt.containsKey(c)){
                if(map.containsKey(c)){
                    if(map.get(c)<tgt.get(c)){
                        count++;
                    }
                map.put(c,map.get(c)+1);
            }else{
                map.put(c,1);
                count++;
            }
        }
        // 说明是一个子串 去除left无效字符
        if(count == len2){
            char sc = source.charAt(left);
            while(!map.containsKey(sc) || map.get(sc) > tgt.get(sc)){
                if(map.containsKey(sc) && map.get(sc) > tgt.get(sc))
                    map.put(sc,map.get(sc) - 1);
                    left++;
                    sc = source.charAt(left);
            }
            // 找到最小子串
            if( i - left + 1 < minLen){
                result = source.substring(left,i + 1);
                minLen = i - left + 1;
            }
        }
        }
        return result;
    }
}
Java Code

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值