思路一:暴力法。遍历每一种可能的回文串长度。 class Solution { public: bool is_palindrome(string s,int left,int right){ for(int i=left,j=right;i<=j;i++,j--){ if(s[i]!=s[j]) return false; } return true; } int getLongestPalindrome(string A, int n) { int max_len...