forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_159.java
42 lines (36 loc) · 1.12 KB
/
_159.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
37
38
39
40
41
42
package com.fishercoder.solutions;
import java.util.HashMap;
/**
* Given a string, find the length of the longest substring T that contains at most 2 distinct characters.
For example, Given s = “eceba”,
T is "ece" which its length is 3.
*/
public class _159 {
public int lengthOfLongestSubstringTwoDistinct(String s) {
if (s.length() < 1) {
return 0;
}
HashMap<Character, Integer> index = new HashMap<Character, Integer>();
int lo = 0;
int hi = 0;
int maxLength = 0;
while (hi < s.length()) {
if (index.size() <= 2) {
char c = s.charAt(hi);
index.put(c, hi);
hi++;
}
if (index.size() > 2) {
int leftMost = s.length();
for (int i : index.values()) {
leftMost = Math.min(leftMost, i);
}
char c = s.charAt(leftMost);
index.remove(c);
lo = leftMost + 1;
}
maxLength = Math.max(maxLength, hi - lo);
}
return maxLength;
}
}