码迷,mamicode.com
首页 > Windows程序 > 详细

76. Minimum Window Substring

时间:2017-09-27 10:19:27      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:public   ++   logs   window   imu   art   color   nbsp   char   

class Solution {
    public String minWindow(String s, String t) {
        boolean[] chs=new boolean[128];
        int[] cnt=new int[128];
        for(int i=0;i<t.length();i++)
        {
            cnt[t.charAt(i)]++;
            chs[t.charAt(i)]=true;
        }
        int count=t.length();
        int l=0;
        int r=0;
        int end=Integer.MAX_VALUE;
        int start=0;
        while(r<=s.length()&&l<s.length())
        {
            if(count>0&&r<s.length())
            {
                if(chs[s.charAt(r)]==true&&cnt[s.charAt(r)]>0)
                    count--;
                cnt[s.charAt(r)]--;
                r++;
            }
            else if(count<=0)
            {
                if(r-l<end-start)
                {
                    start=l;
                    end=r;
                }
                cnt[s.charAt(l)]++;
                if(chs[s.charAt(l)]==true&&cnt[s.charAt(l)]>0)
                    count++;
                l++;
            }
            else
                break;
        }
        if(end==Integer.MAX_VALUE)
            return "";
        return s.substring(start, end);
    }
}

 

76. Minimum Window Substring

标签:public   ++   logs   window   imu   art   color   nbsp   char   

原文地址:http://www.cnblogs.com/asuran/p/7599821.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!