forked from aylei/leetcode-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathn0005_longest_palindromic_substring.rs
70 lines (64 loc) · 1.85 KB
/
n0005_longest_palindromic_substring.rs
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/**
* [5] Longest Palindromic Substring
*
* Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000.
*
* Example 1:
*
*
* Input: "babad"
* Output: "bab"
* Note: "aba" is also a valid answer.
*
*
* Example 2:
*
*
* Input: "cbbd"
* Output: "bb"
*
*
*/
pub struct Solution {}
// submission codes start here
impl Solution {
pub fn longest_palindrome(s: String) -> String {
let seq: Vec<char> = s.chars().collect();
let len = seq.len();
if len < 1 {return s}
let (mut idx, mut curr_len, mut curr_start, mut curr_end) = (0, 0, 0, 0);
while idx < len {
let (mut i, mut j) = (idx, idx);
let ch = seq[idx];
// handle same char
while i > 0 && seq[i - 1] == ch { i -= 1 };
while j < len - 1 && seq[j + 1] == ch { j += 1 };
idx = j + 1;
while i > 0 && j < len - 1 && seq[i - 1] == seq[j + 1] {
i -= 1; j +=1;
}
let max_len = j - i + 1;
if max_len > curr_len {
curr_len = max_len; curr_start = i; curr_end = j;
}
if max_len >= len - 1 {
break;
}
}
s[curr_start..curr_end+1].to_owned()
}
}
// submission codes end
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_5() {
assert_eq!(Solution::longest_palindrome("aaaaa".to_owned()), "aaaaa");
assert_eq!(Solution::longest_palindrome("babab".to_owned()), "babab");
assert_eq!(Solution::longest_palindrome("babcd".to_owned()), "bab");
assert_eq!(Solution::longest_palindrome("cbbd".to_owned()), "bb");
assert_eq!(Solution::longest_palindrome("bb".to_owned()), "bb");
assert_eq!(Solution::longest_palindrome("".to_owned()), "");
}
}