首页 > 其他 > 详细

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

时间:2020-01-21 00:19:56      阅读:76      评论:0      收藏:0      [点我收藏+]
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第三题:无重复字符的最长子串

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

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