博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Minimum Window Substring
阅读量:5091 次
发布时间:2019-06-13

本文共 2021 字,大约阅读时间需要 6 分钟。

Description:

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.

Code:

struct record{    int start, end, length;    record(){        start=end=length = 0;    }};class Solution {public:    bool isWindowContainT(int * win, int * ch_t)    {        for (int i = 0; i < 256; ++i)        {            if (win[i] < ch_t[i])                return false;        }        return true;    }    string minWindow(string s, string t) {        unsigned int lengthS = s.size();        unsigned int lengthT = t.size();        if (lengthT > lengthS)            return "";                    int ch_t[256], ch_win[256];        for (int i = 0; i < 256; ++i)        {            ch_t[i] = 0;            ch_win[i] = 0;        }        for (int i = 0; i < lengthT; ++i)            ch_t[t[i]]++;                    int start = 0, end = 0;        ch_win[s[0]]=1;        record min;        min.length = INT_MAX;        bool flag = false;        while (end < lengthS)        {            if ( isWindowContainT(ch_win, ch_t) )            {                 flag = true;                if (end-start+1 < min.length)                {                    min.start = start;                    min.end = end;                    min.length = end-start+1;                }                ch_win[s[start]]--;                start++;            }            else            {                ch_win[s[++end]]++;            }        }        if (flag)            return s.substr(min.start, min.end-min.start+1);        else            return "";    }};

注意:T中允许字符重复

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

转载于:https://www.cnblogs.com/happygirl-zjj/p/4778667.html

你可能感兴趣的文章
【ul开发攻略】HTML5/CSS3菜单代码 阴影+发光+圆角
查看>>
IOS-图片操作集合
查看>>
IO—》Properties类&序列化流与反序列化流
查看>>
测试计划
查看>>
Mysql与Oracle 的对比
查看>>
jquery实现限制textarea输入字数
查看>>
Codeforces 719B Anatoly and Cockroaches
查看>>
jenkins常用插件汇总
查看>>
c# 泛型+反射
查看>>
第九章 前后查找
查看>>
Python学习资料
查看>>
jQuery 自定义函数
查看>>
jquery datagrid 后台获取datatable处理成正确的json字符串
查看>>
ActiveMQ与spring整合
查看>>
web服务器
查看>>
第一阶段冲刺06
查看>>
EOS生产区块:解析插件producer_plugin
查看>>
JS取得绝对路径
查看>>
排球积分程序(三)——模型类的设计
查看>>
HDU 4635 Strongly connected
查看>>