-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlongest_palindromic_substring.cpp
57 lines (52 loc) · 1.34 KB
/
longest_palindromic_substring.cpp
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
#include <string>
#include <iostream>
using namespace std;
class Solution {
public:
int min(int a, int b)
{
return a < b ? a : b;
}
string longestPalindrome(string s) {
if (s.size() == 0)
return string();
char *format_str = new char[2003]();
int *p = new int[2003]();
p[0] = 1;
format_str[0] = '$';
format_str[1] = '#';
string::iterator it = s.begin();
int i = 2;
for(; it != s.end(); ++it, ++i)
{
format_str[i] = *it;
format_str[++i] = '#';
}
format_str[i] = '\0';
int bi = 0; //border_index
int li = 0;
int maxi = 0; //longest_index
for(int i = 1; format_str[i] != '\0'; ++i)
{
p[i] = bi > i ? min(p[2*li - i], bi - i) : 1;
while(format_str[i + p[i]] == format_str[i - p[i]])
++p[i];
if (p[i] > p[maxi])
maxi = i;
if (p[i] + i - 1 > bi)
{
bi = i + p[i] - 1;
li = i;
}
}
int head = maxi - p[maxi] + 2;
return string(s, head / 2 - 1, p[maxi] - 1);
}
};
int main(int argc, char const* argv[])
{
Solution solution;
string s("aba");
cout << solution.longestPalindrome(s) << endl;
return 0;
}