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

5.最长回文子串

时间:2019-11-28 13:37:33      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:star   color   strong   boolean   max   ++   ges   ret   字符   

题目描述:

给定一个字符串 s,找到 s 中最长的回文子串。你可以假设 s 的最大长度为 1000。
示例 1:
输入: "babad"
输出: "bab"
注意: "aba" 也是一个有效答案。
示例 2:
输入: "cbbd"
输出: "bb"
题解:
public class L5 {
    public static String longestPalindrome(String s) {
        int length = s.length();
        char[] sC = s.toCharArray();
        boolean p[][] = new boolean[s.length()][s.length()];
        int max = 0;
        String maxString = "";
        for(int i =1;i<=length;i++){
            for(int start=0;start<length;start++){
                int end = start+i-1;
                if(end == length ){break;}
                p[start][end] = (i ==1 || (i ==2 &&sC[start] == sC[end]) ||(sC[start] == sC[end] && p[start+1][end-1]));
                if(p[start][end] && i>max){
                    max = i;
                    maxString = s.substring(start,end);
                }
            }
        }
        return maxString;
    }

    public static void main(String[] args) {
        String s = "babad";
        String maxString = longestPalindrome(s);
    }

    }

 

 

5.最长回文子串

标签:star   color   strong   boolean   max   ++   ges   ret   字符   

原文地址:https://www.cnblogs.com/mayang2465/p/11949155.html

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