forked from liuyubobobo/Play-with-Algorithm-Interview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution2.java
36 lines (29 loc) · 1.22 KB
/
Solution2.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// 3. Longest Substring Without Repeating Characters
// https://leetcode.com/problems/longest-substring-without-repeating-characters/description/
//
// 滑动窗口
// 时间复杂度: O(len(s))
// 空间复杂度: O(len(charset))
public class Solution2 {
public int lengthOfLongestSubstring(String s) {
int[] freq = new int[256];
int l = 0, r = -1; //滑动窗口为s[l...r]
int res = 0;
// 在这里, 循环中止的条件可以是 r + 1 < s.length(), 想想看为什么?
// 感谢课程QQ群 @千千 指出 :)
while( r + 1 < s.length() ){
if( r + 1 < s.length() && freq[s.charAt(r+1)] == 0 )
freq[s.charAt(++r)] ++;
else //freq[s[r+1]] == 1
freq[s.charAt(l++)] --;
res = Math.max(res, r-l+1);
}
return res;
}
public static void main(String[] args) {
System.out.println((new Solution2()).lengthOfLongestSubstring( "abcabcbb" ));
System.out.println((new Solution2()).lengthOfLongestSubstring( "bbbbb" ));
System.out.println((new Solution2()).lengthOfLongestSubstring( "pwwkew" ));
System.out.println((new Solution2()).lengthOfLongestSubstring( "" ));
}
}