字符串练习:最长无重复字符子串

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串练习:最长无重复字符子串相关的知识,希望对你有一定的参考价值。

对于一个字符串,请设计一个高效算法,找到字符串的最长无重复字符的子串长度。

给定一个字符串A及它的长度n,请返回它的最长无重复字符子串长度。保证A中字符全部为小写英文字符,且长度小于等于500。

测试样例:
"aabcb",5
返回:3
public class DistinctSubstring {
    public int longestSubstring(String A, int n) {
        // write code here
        if(A==null || n==0){
            return 0;
        }
        char[] chas=A.toCharArray();
        int[] map=new int[256];//256个字符:记录每种字符之前出现的位置
        for(int i=0;i<256;i++){
            map[i]=-1;
        }
        int len=0;
        int pre=-1;
        int cur=0;//当前字符为止的最长无重复字符串的长度
        for(int i=0;i<n;i++){
            pre=Math.max(pre, map[chas[i]]);
            cur=i-pre;
            len=Math.max(len, cur);
            map[chas[i]]=i;
        }
        return len;
    }
}

 

以上是关于字符串练习:最长无重复字符子串的主要内容,如果未能解决你的问题,请参考以下文章

编程练习:无重复字符的最长字串

代码题(56)— 最长重复子串无重复字符的最长子串

3. 无重复字符的最长子串

无重复字符的最长子串

符串的最长无重复字符的子串长度

无重复字符的最长子串