求字符串最大不重复串

Posted dongma

tags:

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

import java.util.*;
public class Client {
    public static void main(String[] args) {
        String str = "abcdbe";
        int i = maxSubLen(str);
        System.out.println(i);
    }

    /**
     * 求不重复字符的长度
     */
    static int maxSubLen(String str) {
        int maxLen = 0;
        int left = 0;
        int right = 0;
        char[] chars = str.toCharArray();
        int n = str.length();
        Object mapVal = new Object();
        Map<Character, Object> map = new HashMap<>();

        while (right < n) {
            Object val = map.get(chars[right]);
            if (val == null) {// 没有重复字符
                map.put(chars[right], mapVal);
                right++;
                maxLen = Math.max(right - left, maxLen);
            } else {// 有重复字符
                while (chars[left] != chars[right]) {
                    left++;
                }
                left++;
                right++;
            }
        }
        return maxLen;
    }

}

 

以上是关于求字符串最大不重复串的主要内容,如果未能解决你的问题,请参考以下文章

字符串----最长重复子串

POJ - 2406 ~SPOJ - REPEATS~POJ - 3693 后缀数组求解重复字串问题

2021-06-24:求一个字符串中,最长无重复字符子串长度。

马拉车求最大回文字串

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

找出给定的一个字符串中最大的不重复子串,不重复子串即一个子串中不出现两个相同的字符