首页 > 编程语言 > 详细

算法 - 最长无重复子串

时间:2017-10-18 15:56:50      阅读:228      评论:0      收藏:0      [点我收藏+]

原题:

https://leetcode.com/problems/longest-substring-without-repeating-characters/description/

 

参考:

[LeetCode] Longest Substring Without Repeating Characters 最长无重复子串

 

解法:

class Solution {
    public int lengthOfLongestSubstring(String s) {
        HashMap<Character,Integer> map = new HashMap<>();
        
        int res = 0, i = 0,left=0;
        
        while(i<s.length())
        {
            char ch = s.charAt(i);
            if(map.containsKey(ch) && map.get(ch)>=left) left = map.get(ch)+1;
            else res = Math.max(res,i-left+1);
            map.put(ch,i++);
        }
        return res;
    }
}

 

算法 - 最长无重复子串

原文:http://www.cnblogs.com/qlky/p/7686951.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!