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

LeetCode3 Longest Substring Without Repeating Characters

时间:2015-06-06 14:57:54      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:leetcode   算法   hash   

题目:

 Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For "bbbbb" the longest substring is "b", with the length of 1.

译:给定一个字符串,找到没有重复字符的最长子字符串。例:字符串“abcabcbb"的最大字串位”abc",长度为3。


方法一:以每一个字符作为起始字符,计算不重复字符串的长度。并记录最大的串的长度。hash表(一个boolean类型的数组,大小为256,数组的索引可对应字符的ASCII码)记录该字符是否出现过。

public static int lengthOfLongestSubstringA(String s) {
<span style="white-space:pre">	</span>//book存储字符出现的位置,索引表示字符ASCII码,值表示最后一次在字符串中出现的位置
    boolean[] book = new boolean[256];
<span style="white-space:pre">	</span>int maxSubLen = 0;  
<span style="white-space:pre">	</span>int[] lenOff = new int[s.length()];//记录位置 
<span style="white-space:pre">	</span>
<span style="white-space:pre">	</span>for(int start=0;start<s.length();start++){   
<span style="white-space:pre">		</span>//初始化标志位
<span style="white-space:pre">		</span>for(int i=0;i<256;i++){
<span style="white-space:pre">			</span>book[i] = false;
<span style="white-space:pre">		</span>}
<span style="white-space:pre">		</span>
<span style="white-space:pre">		</span>for (int p  = start; p  < s.length();p ++) {
<span style="white-space:pre">			</span>int off = s.charAt(p);
<span style="white-space:pre">			</span>
<span style="white-space:pre">			</span>if (book[off]) {//字符出现过 
<span style="white-space:pre">				</span>break;
<span style="white-space:pre">			</span>} 
<span style="white-space:pre">			</span>lenOff[start] = p-start+1; 
<span style="white-space:pre">			</span>book[off] = true;
<span style="white-space:pre">			</span>if (maxSubLen < lenOff[start]){
<span style="white-space:pre">				</span>maxSubLen = lenOff[start];
<span style="white-space:pre">			</span>} 
<span style="white-space:pre">		</span>} 
<span style="white-space:pre">	</span>}
<span style="white-space:pre">	</span>return maxSubLen;
}

方法二: 统计可能出现的最大子字符串。需要在hash表(一个整数数组,数组大小为256,每个索引对应一个字符的ASCII码)中记录上次出现该字符的位置。只进行一次遍历,如果出现重复字符,根据上次出现该字符的位置,重置可能为最大字符串的起始位置,比如上次出现的位置是n,那下次统计的字符串的起始位置就是n+1。

public static int lengthOfLongestSubstring(String s) {
	//book存储字符出现的位置,索引表示字符ASCII码,值表示最后一次在字符串中出现的位置
    int[] book = new int[128];
	int maxSubLen = 0; 
	int subStrStart = 0;
	int[] lenOff = new int[s.length()];
	
	for(int i =0;i<128;i++)
	    book[i]  = -1;
	    
	for (int p  = 0; p  < s.length();p ++) {
		int off = s.charAt(p); 
		
		if (book[off]>=subStrStart) {//字符在当前字串中出现过   
			subStrStart = book[off]+1; //重新计算字串
		} 

	    lenOff[subStrStart] = p-subStrStart+1;
	    
		if (maxSubLen < lenOff[subStrStart]){
			maxSubLen = lenOff[subStrStart];
		} 
		book[off] = p;//字符最后一次出现的位置
	} 
	return maxSubLen;
}


LeetCode3 Longest Substring Without Repeating Characters

标签:leetcode   算法   hash   

原文地址:http://blog.csdn.net/zhang1314wen2008/article/details/46387977

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