首页 > 其他 > 详细

3.Longest Substring without repeating characters

时间:2015-06-02 06:48:25      阅读:156      评论:0      收藏:0      [点我收藏+]
public class Solution {
    public int lengthOfLongestSubstring(String s) {
        if (s == null || s.length() == 0) {
            return 0;
        }
        
        HashSet<Character> hs = new HashSet<Character>();
        int leftbound = 0;
        int max = 0;
        for (int i = 0; i < s.length(); i++) {
            if (hs.contains(s.charAt(i))) {
                while (leftbound < i && s.charAt(leftbound) != s.charAt(i)) {
                    hs.remove(s.charAt(leftbound));
                    leftbound++;
                }
                leftbound++;
            } else {
                hs.add(s.charAt(i));
                max = Math.max(max, i - leftbound + 1);
            }
            
        }
        return max;
    }
}

 

3.Longest Substring without repeating characters

原文:http://www.cnblogs.com/77rousongpai/p/4545381.html

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