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

leetcode(5)最长回文子串

时间:2019-06-22 12:12:18      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:ali   max   lin   ret   ==   for   leetcode   pre   str   

最长回文子串

解题思想:动态规划

class Solution {
    public String longestPalindrome(String s) {
        int len = s.length();
        boolean[][] b = new boolean[len][len];
        int max = 0;
        int begin = 0;
        for(int i=0;i<len;i++){
            for(int j=0;j<=i;j++){
                if(s.charAt(i)==s.charAt(j)&&(i-j<=2 || b[j+1][i-1])){
                    b[j][i] = true;
                    if(i-j+1>max){
                        max = i - j + 1;
                        begin = j;
                    }
                }
            }
        }
        return s.substring(begin,begin+max);
    }
}

 

leetcode(5)最长回文子串

标签:ali   max   lin   ret   ==   for   leetcode   pre   str   

原文地址:https://www.cnblogs.com/erdanyang/p/11068367.html

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