76.窗口滑动最小子串
程序员文章站
2022-06-02 14:10:47
...
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".
参考答案(c++):
class Solution {
public:
string minWindow(string s, string t) {
vector<int> map(128,0);
for(auto c: t) map[c]++;
int counter=t.size(), begin=0, end=0, d=INT_MAX, head=0;
while(end<s.size()){
if(map[s[end++]]-->0) counter--; //in t
while(counter==0){ //valid
if(end-begin<d) d=end-(head=begin);
if(map[s[begin++]]++==0) counter++; //make it invalid
}
}
return d==INT_MAX? "":s.substr(head, d);
}
};
性能:
参考答案(python):
class Solution(object):
def minWindow(self, s, t):
need, missing = collections.Counter(t), len(t)
i = I = J = 0
for j, c in enumerate(s, 1):
missing -= need[c] > 0
need[c] -= 1
if not missing:
while i < j and need[s[i]] < 0:
need[s[i]] += 1
i += 1
if not J or j - i <= J - I:
I, J = i, j
return s[I:J]
性能:
上一篇: dvwa medium级别前五漏洞测试
下一篇: ai怎么设计油画效果的青葡萄?
推荐阅读
-
leetcode的Hot100系列--3. 无重复字符的最长子串--滑动窗口
-
1208 尽可能使字符串相等(滑动窗口)
-
20200329-剑指offer-面试题48. 最长不含重复字符的子字符串(滑动窗口)
-
从最大子串到窗口滑动算法,我终于明白了为什么大多数搞算法的人头发会少了!
-
Week5 W(A - 最大矩形)(B - TT's Magic Cat)(C - 平衡字符串)(D - 滑动窗口)
-
【Week5 作业】A - 最大矩形、B - TT's Magic Cat、C - 平衡字符串、D - 滑动窗口
-
无重复字符最长子串----------------滑动窗口法
-
leetcode的Hot100系列--3. 无重复字符的最长子串--滑动窗口
-
76.窗口滑动最小子串
-
LeetCode刷题209最小子数组 滑动窗口