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

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

算法描述:

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).

Example:

Input: S = "ADOBECODEBANC", T = "ABC"Output: "BANC"

Note:

  • If there is no such window in S that covers all characters in T, return the empty string "".
  • If there is such window, you are guaranteed that there will always be only one unique minimum window in S.

解题思路:子字符串问题,可以采用强大的滑动窗口方法解决。首先用map对字符串进行映射,并用两个指针分别指向窗口左边和右边,通过不断的滑动两个指针实现对窗口内字符的操作。

string minWindow(string s, string t) {        string res = "";        unordered_map
map; for(char c:t) map[c]++; int left=0; int right = 0; int distance = INT_MAX; int count = t.size(); int head = 0; while(right < s.size()){ if(map[s[right++]]-- >0) count--; while(count==0){ if(right-left< distance){ head = left; distance = right-head; } if(map[s[left++]]++ ==0) count++; } } return distance==INT_MAX?"":s.substr(head,distance); }

 

转载于:https://www.cnblogs.com/nobodywang/p/10372839.html

你可能感兴趣的文章
Python OS模块
查看>>
Apache Storm技术实战之2 -- BasicDRPCTopology
查看>>
Mybatis实战-入门程序
查看>>
随机数生成器
查看>>
HDU 4751 Divide Groups 2013 ACM/ICPC Asia Regional Nanjing Online
查看>>
GROUP BY 與 Null 值
查看>>
01题
查看>>
iOS获取当前设备方向
查看>>
用instsrv.exe将应用程序设置成服务
查看>>
字符型指针变量与字符数组的区别 <转>
查看>>
Collection与Collections的区别
查看>>
cookie 和session的简单比较
查看>>
翻转错误法线
查看>>
SVN cleanup失败的解决方案
查看>>
原生JS实现购物车功能
查看>>
VMware9中安装VMware tools
查看>>
在windows下使用binwalk
查看>>
泪奔,配好了bioconductor环境
查看>>
Oracle双实例切换
查看>>
SQL Server IO 子系统浅究 I
查看>>