zoukankan      html  css  js  c++  java
  • LeetCode_Minimum Window Substring

    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的字符后,然后再收缩头指针,直到不能再收缩为止。最后记录所有可能的情况中窗口最小的

    class Solution {
    public:
        string minWindow(string S, string T) {
            // Start typing your C/C++ solution below
            // DO NOT write int main() function
            vector<int> expect(256, 0);
            vector<int> appear(256, 0);
            int count = 0; 
            int start = 0;
            int minstart= 0;
            int minLen = INT_MAX;
            
            for(int i = 0; i < T.size(); i++)expect[T[i]]++;
            
            for(int  i = 0; i < S.size() ; i++)
            {
                if(expect[S[i]] > 0){
                    appear[S[i]]++;
                    if(appear[S[i]] <= expect[S[i]])
                        count++;
                }
                if(count == T.size()){
                    while(expect[S[start]] == 0 || appear[S[start]] > expect[S[start]]){
                        appear[S[start]]--;
                        start++;
                    }
                    if(minLen > (i - start +1) ){
                        minLen = i - start + 1 ;
                        minstart = start;
                    }
                }
            }
            
            if(minLen == INT_MAX) return string("");
            
            return S.substr(minstart, minLen);    
        }
    };
  • 相关阅读:
    初始化和实例化对象
    java设计模式
    构造方法的访问级别
    C#连接操作sqlite
    using三种用法
    C#获取当前日期时间
    C#生成excel到其他电脑生成报表时报错
    [Python] VSCode隐藏__pycache__文件夹
    [Git] 常用操作速查
    [Pytorch] 卷积尺寸计算
  • 原文地址:https://www.cnblogs.com/graph/p/3258676.html
Copyright © 2011-2022 走看看