[動態規劃] 5. 最長迴文子串

給定一個字符串 s,找到 s 中最長的迴文子串。你可以假設 s 的最大長度爲 1000。   思路:用動態規劃的方法,參考題解 class Solution { public:     string longestPalindrome(string s) {         int len=s.size();         if(len==0||len==1)             retur
相關文章
相關標籤/搜索