码迷,mamicode.com
首页 > 其他好文 > 详细

5. Longest Palindromic Substring

时间:2017-11-29 16:09:05      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:tor   substr   put   sub   回文字符串   for   规划   public   you   

Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000.

Example:

Input: "babad"

Output: "bab"

Note: "aba" is also a valid answer.

寻找最长回文字符串。

用动态规划。dp[i][j]记录从s[i]到s[j]是否为回文。

class Solution {
public:
    string longestPalindrome(string s) {
        int len = s.length();
        vector< vector<int> > dp(len, vector<int>(len));
        string res;
        for( int i=0; i<len; ++i ){
            for( int j=i; j>=0; --j ){
                dp[i][j] = ((s[i]==s[j]) && (i-j<2 || dp[i-1][j+1]));
                if( dp[i][j] && (i-j+1)>res.length() )
                    res = s.substr(j, i-j+1);;
            }
        }
        return res;
    }
};

 

5. Longest Palindromic Substring

标签:tor   substr   put   sub   回文字符串   for   规划   public   you   

原文地址:http://www.cnblogs.com/Zzz-y/p/7920592.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!