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

求字符串最大不重复串

时间:2020-04-19 11:10:38      阅读:50      评论:0      收藏:0      [点我收藏+]

标签:span   ati   obj   col   字符串   char   pre   character   toc   

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;
    }

}

 

求字符串最大不重复串

标签:span   ati   obj   col   字符串   char   pre   character   toc   

原文地址:https://www.cnblogs.com/dongma/p/12730170.html

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