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

leetcode第三题:无重复字符的最长子串

时间:2020-01-21 00:34:47      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:rem   return   字符   res   end   mat   static   stat   amp   

public static int lengthOfLongestSubstring(String s) {
        int len = s.length();
        int res = 0;
        int start = 0;
        int end = 0;
        HashSet set = new HashSet();
        while (start < s.length() && end < s.length()) {
            if (set.contains(s.charAt(end))) {
                set.remove(s.charAt(start));
                start++;
            }
            else {
                set.add(s.charAt(end));
                end++;
                res = Math.max(res, end - start);
            }
        }
        return res;
    }

leetcode第三题:无重复字符的最长子串

标签:rem   return   字符   res   end   mat   static   stat   amp   

原文地址:https://www.cnblogs.com/pusan/p/12219841.html

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