1

Possible Duplicate:
Write a function that returns the longest palindrome in a given string

For example, the given string is "google", then the longest symmetrical string is "goog",therefore the answer should be 4. Any fast algorithm to solve it?

4

1 に答える 1

2

最長 (一般的な) 回文文字列検索は、最長部分列問題に似ています。

詳細については、これとこれ試してください。

于 2012-10-07T16:03:31.630 に答える