-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPalindromeSubstring.java
More file actions
42 lines (28 loc) · 1006 Bytes
/
Copy pathPalindromeSubstring.java
File metadata and controls
42 lines (28 loc) · 1006 Bytes
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
class Solution {
/**
* validate if string is palindrome
*/
public String longestPalindrome(String s) {
if (s == null || s.length() < 1) {
return "";
}
int start = 0, end = 0;
for (int i = 0; i < s.length(); i++) {
int len1 = expandAroundCenter(s, i, i); // odd case
int len2 = expandAroundCenter(s, i, i + 1); // even case
int len = Math.max(len1, len2);
if (len > end - start) {
start = i - (len - 1) / 2;
end = i + len / 2 ;
}
}
return s.substring(start, end + 1);
}
private int expandAroundCenter(String s, int left, int right) {
while (left >= 0 && right < s.length() && s.charAt(left) == s.charAt(right)) {
left--;
right++;
}
return right - left - 1;
}
}