标签:
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