[Java]LeetCode5 Longest Palindromic Substring

Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is
1000, and there exists one unique longest palindromic substring.

题意:求字符串中最长的回文

感觉这题不难,可以这样想,设置两个指针,分别对应0,len-1。

比如从第一个字符开始,abababac,我们可以找a出现的位置,然后以第一个a与每个a作为一段。判断每一段是否是回文,因为是从后往前查找的,所以第一个找到的肯定是这一次查找中最长的回文,然后一次第2个字符,第3个字符。这个想法在字符串中的字符不一样的时候比较好。但是如果字符中出现的例如aaaaaabcaaaaa这样的话,就不佳了。在leetcode中一测试,果然Time
Limited。

第二个想法,算是逆推法,既然求的是回文,回文的字符是对称的。我们可以先确定回文的中心,回文的中心,奇数的时候是一个,偶数的时候是两个。分别向中心的两边进行匹配,判断是否相等,从而计算回文的长度。

代码如下:

public static String longestPalindrome(String s) {
	       if(s.isEmpty()||s.length()==1)return s;
	       String longest=s.substring(0,1);
	       for(int i=0;i<s.length();i++)
	       {
	           //将i作为中心,获取最长的字符串
	           String tmp=isPalindrome(s,i,i);
	           if(tmp.length()>longest.length())longest=tmp;
	           //将i,i+1作为中心,获得最长的字符串
	            tmp=isPalindrome(s,i,i+1);
	           if(tmp.length()>longest.length())longest=tmp;
	       }
	       return longest;
	   }
private static String isPalindrome(String s, int start, int end)
    {
        // TODO Auto-generated method stub
        while(start>=0&&end<=s.length()-1&&s.charAt(start)==s.charAt(end))
        {
            start--;
            end++;
        }
        return s.substring(start+1,end);
    }
时间: 2024-11-05 11:55:23

[Java]LeetCode5 Longest Palindromic Substring的相关文章

LeetCode5 Longest Palindromic Substring

描述:Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longest palindromic substring. 给一个String串,求其中最大的回文字串.这是一个典型的最长回文子串问题,目前有四种解法. 1.暴力测试,测试每个子串,显然这样是最笨的方法,

LeetCode第[5]题(Java):Longest Palindromic Substring 标签:String、动态规划

题目中文:求最长回文子串 题目难度:Medium 题目内容: Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. 翻译: 给定一个字符串s,找出s中最长的回文子串.你可以假设s的最大长度是1000. 什么叫回文子串? 就是字符串中,满足能正读反读都一样的子串,就是回文子串.如下所示 Input: "babad"

LeetCode-5. Longest Palindromic Substring(M)

解法 比较经典的问题,寻找最长回文子串.Leetcode里提供了多种解法.我采用最直观的解法:中心扩展法. 思路是每次以当前元素为中心向两边扩展,直到遇到不同元素,此时找到一个子串.有两点需要注意的地方: 1)空串和单字符都是回文,直接返回即可. 2)偶数回文和奇数回文的情况.例如:abace是aba的奇数串,以b为中心向两周扩展即可.但是abbawe是偶数串abba,这样需要以bb为指针向两周同时往外扩展. Given a string s, find the longest palindro

LeetCode-5:Longest Palindromic Substring(最长回文子字符串)

描述:给一个字符串s,查找它的最长的回文子串.s的长度不超过1000. Input: "babad" Output: "bab" Note: "aba" is also a valid answer. 我是采用动态规划解决此题的.官方的solutions中提供了几种思路,包括我使用的DP.这里摘要如下: 思路1: 将s反转得到s',然后查找s和s'的最长公共子串substring,那么substring就是最长回文子串.比如:s = "

LeetCode 005 Longest Palindromic Substring - Java

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. Example: Input: "cbbd" Ou

LeetCode5:Longest Palindromic Substring

题目: Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longest palindromic substring. 解题思路: 主要有三种: 第一种:Manacher算法,也是最快的,时间复杂度为O(n) 第二种:DP算法,时间复杂度为O(n*n) 第三种:

LeetCode【5】. Longest Palindromic Substring --java实现

Longest Palindromic Substring 一.题目如下:        Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longest palindromic substring. 题目要求给定字符串的最大对称子字符串,如"aaabccbac

Longest Palindromic Substring leetcode java

题目: Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longest palindromic substring. 题解: 第一种方法就是挨个检查,维护全局最长,时间复杂度为O(n3),会TLE. 代码如下: 1 public String longestP

LeetCode 5 Longest Palindromic Substring(C,C++,Python,Java)

Problem: Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longest palindromic substring. Solution: 以每一个字符为中间查找回文串,然后记录下最大的回文串,时间复杂度O(n^2) 题目大意: 给定一个字符串,求字符