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

leetcode516

时间:2017-06-09 10:01:11      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:style   new   code   sequence   ==   https   span   blog   longest   

public class Solution {
    public int LongestPalindromeSubseq(string s) {
        int[,] dp = new int[s.Length, s.Length];

            for (int i = s.Length - 1; i >= 0; i--)
            {
                dp[i, i] = 1;
                for (int j = i + 1; j < s.Length; j++)
                {
                    if (s[i] == s[j])
                    {
                        dp[i, j] = dp[i + 1, j - 1] + 2;
                    }
                    else
                    {
                        dp[i, j] = Math.Max(dp[i + 1, j], dp[i, j - 1]);
                    }
                }
            }
            return dp[0, s.Length - 1];
    }
}

https://leetcode.com/problems/longest-palindromic-subsequence/#/description

leetcode516

标签:style   new   code   sequence   ==   https   span   blog   longest   

原文地址:http://www.cnblogs.com/asenyang/p/6970296.html

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