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

(动态规划)最长回文子串

时间:2015-04-29 11:35:37      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

int longestPalindromeSubSequence(string str){
    int n=str.length();
    vector<vector<int> > dp(n,vector<int>(n));

    for(int j=0;j<n;j++){
        dp[j][j]=1;
        for(int i=j-1;i>=0;i--){
            if(str[i]==str[j])
                dp[i][j]=dp[i+1][j-1]+2;
            else
                dp[i][j]=max(dp[i+1][j],dp[i][j-1]);
        }
    }
    return dp[0][n-1];
}

 

(动态规划)最长回文子串

标签:

原文地址:http://www.cnblogs.com/AndyJee/p/4465375.html

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