[LeetCode] Minimum Window Substring 解题报告

本文介绍了一种在字符串S中寻找包含字符串T所有字符的最小子串的算法,采用双指针技术,通过动态维护一个区间来实现O(n)的时间复杂度。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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.

» Solve this problem

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

[Code]

1:    string minWindow(string S, string T) {  
2: // Start typing your C/C++ solution below
3: // DO NOT write int main() function
4: if(S.size() == 0) return "";
5: if(S.size() < T.size()) return "";
6: int appearCount[256];
7: int expectCount[256];
8: memset(appearCount, 0, 256*sizeof(appearCount[0]));
9: memset(expectCount, 0, 256*sizeof(appearCount[0]));
10: for(int i =0; i < T.size(); i++)
11: {
12: expectCount[T[i]]++;
13: }
14: int minV = INT_MAX, min_start = 0;
15: int wid_start=0;
16: int appeared = 0;
17: for(int wid_end = 0; wid_end< S.size(); wid_end++)
18: {
19: if(expectCount[S[wid_end]] > 0)// this char is a part of T
20: {
21: appearCount[S[wid_end]]++;
22: if(appearCount[S[wid_end]] <= expectCount[S[wid_end]])
23: appeared ++;
24: }
25: if(appeared == T.size())
26: {
27: while(appearCount[S[wid_start]] > expectCount[S[wid_start]]
28: || expectCount[S[wid_start]] == 0)
29: {
30: appearCount[S[wid_start]]--;
31: wid_start ++;
32: }
33: if(minV > (wid_end - wid_start +1))
34: {
35: minV = wid_end - wid_start +1;
36: min_start = wid_start;
37: }
38: }
39: }
40: if(minV == INT_MAX) return "";
41: return S.substr(min_start, minV);
42: }

[已犯错误]
1. Line 8&9
不熟悉这个api,最初写成了

memset(expectCount, 0, 256);

结果老是出问题,检查了很多遍logic,也没发现有问题,最后还是放到VS下debug才发现原来是地址空间大小没有传对。正确的应该是:

memset(expectCount, 0, 256*sizeof(appearCount[0]));
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值