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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
pub fn longest_palindrome(s: String) -> String {
by_array_index(&s).to_string()
}
#[cfg(test)]
#[test]
fn test_longest_palindrome() {
assert!(longest_palindrome(String::from("abbbabbbac")) == String::from("abbbabbba"));
}
#[allow(unused_assignments)]
fn by_array_index(s: &str) -> &str {
let b = s.as_bytes();
if b.len() == 1 {
return s;
}
let mut cur_longest_start_idx = 0;
let mut cur_longest_end_idx = 0;
let mut ite = 1;
let mut cur_start_idx = 0;
let mut cur_end_idx = 0;
let mut should_repeat = false;
while ite <= b.len() - 1 || should_repeat {
cur_start_idx = ite - 1;
cur_end_idx = ite;
if should_repeat {
if ite < b.len() - 1 {
cur_end_idx = ite + 1;
}
ite += 1;
}
should_repeat = !should_repeat;
while cur_start_idx > 0 && cur_end_idx < b.len() - 1 && b[cur_end_idx] == b[cur_start_idx] {
cur_start_idx -= 1;
cur_end_idx += 1;
}
if b[cur_end_idx] != b[cur_start_idx]
&& cur_end_idx - cur_start_idx > 2
&& b[cur_end_idx - 1] == b[cur_start_idx + 1]
{
cur_end_idx -= 1;
cur_start_idx += 1;
} else if b[cur_end_idx] != b[cur_start_idx] {
continue;
}
if cur_end_idx - cur_start_idx > cur_longest_end_idx - cur_longest_start_idx {
cur_longest_end_idx = cur_end_idx;
cur_longest_start_idx = cur_start_idx;
}
}
&s[cur_longest_start_idx..(cur_longest_end_idx + 1)]
}
#[cfg(test)]
#[test]
fn test_by_array_index() {
assert!(by_array_index("QQ") == String::from("QQ"));
assert!(by_array_index("QAQ") == String::from("QAQ"));
}