首页 > Windows开发 > 详细

[?]**Minimum Window Substring & String类问题模板

时间:2016-01-15 15:54:35      阅读:228      评论:0      收藏:0      [点我收藏+]

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 empty string "".

If there are multiple such windows, you are guaranteed that there will always be only one unique minimum window in S.

 

牛逼的讨论:

https://leetcode.com/discuss/72701/here-10-line-template-that-can-solve-most-substring-problems

另一个讲解:

https://leetcode.com/discuss/18584/sharing-my-straightforward-o-n-solution-with-explanation

 

[?]**Minimum Window Substring & String类问题模板

原文:http://www.cnblogs.com/hygeia/p/5133265.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!