码迷,mamicode.com
首页 > 其他好文 > 详细

LintCode-最长无重复字符的子串

时间:2015-05-14 20:37:42      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:面试   lintcode   

给定一个字符串,请找出其中无重复字符的最长子字符串。

样例

例如,在"abcabcbb"中,其无重复字符的最长子字符串是"abc",其长度为 3

对于,"bbbbb",其无重复字符的最长子字符串为"b",长度为1

挑战

O(n) 时间

分析:遍历该字符串,每遍历一个字母时,利用map去找该字母最近一次出现是什么时候,中间这一段便是无重复字符的字符串。

代码:
class Solution {
public:
	/**
	* @param s: a string
	* @return: an integer
	*/
	int lengthOfLongestSubstring(string s) {
		// write your code here
		int ret = 0;
		map<char, int> m;
		int start = 1;
		for (int i = 1; i <= s.length(); i++)
		{
			char c = s[i - 1];
			if (m[c] >= start)
			{
				start = m[c] + 1;
				m[c] = i;

			}
			else
			{
				m[c] = i;
				ret = max(ret, i - start + 1);
			}

		}
		return ret;
	}
};




LintCode-最长无重复字符的子串

标签:面试   lintcode   

原文地址:http://blog.csdn.net/wangyuquanliuli/article/details/45724887

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