码迷,mamicode.com
首页 > Windows程序 > 详细

Lintcode32 Minimum Window Substring solution 题解

时间:2017-05-20 00:04:05      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:lintcode题解

【题目描述】

Given a string source and a string target, find the minimum window in source which will contain all the characters in target.

Notice:If there is no such window in source that covers all characters in target, return the emtpy string "".If there are multiple such windows, you are guaranteed that there will always be only one unique minimum window in source.

给定一个字符串source和一个目标字符串target,在字符串source中找到包括所有目标字符串字母的子串。

注意:如果在source中没有这样的子串,返回"",如果有多个这样的子串,返回起始位置最小的子串。

【题目链接】

http://www.lintcode.com/en/problem/minimum-window-substring/

【题目解析】

可以用窗口型两个指针的思路来解决,外层for循环i = 0 ... n, 内层while循环,条件是j < source.length() 和 !isValid(sourceHash, targetHash),前者是数组下标边界,后者是一个函数,检查当前窗口中的substring是否包含了目标字符串中全部所需的字符,未满足则继续扩大窗口j++,同时更新sourceHash。这里sourceHash,targetHash是整型数组int[],因为ASCII码最多256个,因此用int[]可以作为简化的HashMap使用,key是char对应的int的值,value则是该char在substring中的出现个数。isValid函数则检查sourceHash是否全部包含了targetHash,256个字符一一对应,因此只需一重for循环,如果sourceHash[i] < targetHash[i],则说明有字符未满足条件。

需要注意的是,要设定一个辅助变量记录minStr的长度。

【参考答案】

http://www.jiuzhang.com/solutions/minimum-window-substring/


Lintcode32 Minimum Window Substring solution 题解

标签:lintcode题解

原文地址:http://12923862.blog.51cto.com/12913862/1927715

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!