-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5.cpp
55 lines (54 loc) · 1.55 KB
/
5.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
// center-extend.cpp
class Solution {
int getPalindromeLength(string& str, int index) {
int len = 1;
while (index - len >= 0 && index + len < str.size() &&
str[index - len] == str[index + len])
++len;
return len - 1;
} // #b#a#b#a#d#,#c#b#b#d#
public:
string longestPalindrome(string s) {
if (s.size() <= 1)
return s;
string str = "#";
for (int i = 0; i < s.size(); ++i, str += "#")
str.append(1, s[i]);
int len = 0, cur, index;
for (int i = 1; i < str.size(); ++i) {
cur = getPalindromeLength(str, i);
if (cur > len) {
len = cur;
index = i;
}
}
return s.substr(index / 2 - len / 2, len);
}
};
class SolutionDP {
bool recursive(const string& s, int i, int j, vector<vector<int>>& dp) {
if (i >= j) {
return dp[i][j] = 1;
}
if (dp[i][j] != -1) {
return dp[i][j];
}
if (s[i] == s[j]) {
return dp[i][j] = recursive(s, i + 1, j - 1, dp);
} else {
return dp[i][j] = 0;
}
}
public:
string longestPalindrome(string s) {
vector<vector<int>> dp(s.size(), vector<int>(s.size(), -1));
for (int len = s.size(); len > 0; --len) {
for (int i = 0; i + len <= s.size(); ++i) {
if (recursive(s, i, i + len - 1, dp)) {
return s.substr(i, len);
}
}
}
return "";
}
};