码迷,mamicode.com
首页 > 编程语言 > 详细

leetcode 3. Longest Substring Without Repeating Characters [java]

时间:2019-04-05 14:03:33      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:ring   max   bst   rac   length   sub   sts   character   contain   

public int lengthOfLongestSubstring(String s) {
        int i = 0, j = 0, max = 0;
        Set<Character>  set = new HashSet<>();
        
        while(j < s.length()){
            if(! set.contains(s.charAt(j)) ){
                set.add(s.charAt(j++));
                max = Math.max(max, set.size());
            }else{
                set.remove(s.charAt(i++));
            } 
        }
        return max;
    }

leetcode 3. Longest Substring Without Repeating Characters [java]

标签:ring   max   bst   rac   length   sub   sts   character   contain   

原文地址:https://www.cnblogs.com/whyaza/p/10658371.html

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