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.

解题思路一:

暴力枚举

共N^2量级个子串(从下标零开始),每次检查需一个for循环,等于是3重for循环,时间复杂度O(n^3)

解题思路二:

动态规划

设定一个表格table[][],其中table[i][j]表示substring(i,j+1)是不是Palindromic,时间复杂度为O(n^2)空间复杂度也为O(n^2)。

Java代码如下:

	static public String longestPalindrome(String s) {
if(s.length()==1)return s;
int[][] table=new int[s.length()][s.length()];
int beginIndex = 0,endIndex = 0;
//初始化第一、第二条斜线
for(int i=0;i<s.length();i++){
table[i][i]=1;
if(i==s.length()-1)break;
if(s.charAt(i)==s.charAt(i+1)){
table[i][i+1]=1;
beginIndex=i;
endIndex=i+1;
}
}
//给第k条斜线赋值
for(int k=2;k<s.length();k++){
for(int i=0;i<s.length()-k;i++){
if(table[i+1][i+k-1]==1&&s.charAt(i)==s.charAt(i+k)){
table[i][i+k]=1;
beginIndex=i;
endIndex=i+k;
}
}
}
printTable(table);
return s.substring(beginIndex,endIndex+1);
} public static void printTable(int table[][]){
for(int i=0;i<table.length;i++){
for(int j=0;j<table[i].length;j++){
System.out.print(table[i][j]+" ");
}
System.out.println("");
}
}

提交结果,TimeExceed。证明时间复杂度为O(n^2)是不能提交通过的。

解题思路三:

中心法,对S中每一个字符及重复的双字符为中心,进行遍历。时间复杂度为O(n^2),在leetcode上竟然Accepted!

Java代码如下:

static public String longestPalindrome(String s) {
if (s.length() == 1) return s;
String longest = s.substring(0, 1);
for (int i = 0; i < s.length(); i++) {
// 检查单字符中心
String tmp = helper(s, i, i);
if (tmp.length() > longest.length())
longest = tmp;
// 检查多字符中心
tmp = helper(s, i, i + 1);
if (tmp.length() > longest.length())
longest = tmp;
} return longest;
}
public static String helper(String s, int begin, int end) {
while (begin >= 0 && end <= s.length() - 1 && s.charAt(begin) == s.charAt(end)) {
begin--;
end++;
}
return s.substring(begin + 1, end);
}

解题思路四:

Manacher’s algorithm,时间复杂度为O(n)

算法思路比较复杂,参考链接

http://blog.csdn.net/ggggiqnypgjg/article/details/6645824

http://blog.csdn.net/xingyeyongheng/article/details/9310555

Java代码

	static public String longestPalindrome(String s) {
char[] sChar = new char[2 * s.length() + 1];
for (int i = 0; i < sChar.length; i++) {
if (i % 2 == 0)
sChar[i] = '#';
else
sChar[i] = s.charAt(i / 2);
} int[] p = new int[2 * s.length() + 1];
int id = 0, mx = 0, maxID = 0;
for (int i = 0; i < sChar.length; i++) {
// 核心算法
if (mx > i) {
p[i] = Math.min(p[2 * id - i], mx - i);
} else
p[i] = 1;
int low = i - p[i], high = i + p[i];
while (low >= 0 && high <= (sChar.length - 1)) {
if (sChar[low] == sChar[high]) {
p[i]++;
low--;
high++;
} else
break;
}
// 更新id和mx的值
if (i + p[i] > mx) {
id = i;
mx = id + p[i];
}
// 更新取得最大p【i】的id
if (p[maxID] < p[i])
maxID = i;
}
char[] result = new char[p[maxID] - 1];
for (int i = 0; i < result.length; i++) {
result[i] = sChar[maxID - p[maxID] + 2 + 2 * i];
}
return new String(result);
}

C++实现如下:

 #include<string>
#include<vector>
#include<algorithm>
using namespace std;
class Solution {
public:
string longestPalindrome(string s) {
vector<char> sChar( * s.length() + , '#');
for (int i = ; i < sChar.size(); i++)
if(i&)
sChar[i]= s[i / ];
vector<int> p( * s.length() + ,);
int id = , mx = , maxID = ;
for (int i = ; i < sChar.size(); i++) {
// 核心算法
if (mx > i) {
int temp = p[ * id - i];
p[i] =min(temp, mx - i);
}
else
p[i] = ;
int low = i - p[i], high = i + p[i];
while (low >= && high <= (sChar.size() - )) {
if (sChar[low] == sChar[high]) {
p[i]++;
low--;
high++;
}
else
break;
}
if (i + p[i] > mx) {
id = i;
mx = id + p[i];
}
if (p[maxID] < p[i])
maxID = i;
}
vector<char> result(p[maxID] - ,'');
for (int i = ; i < result.size(); i++) {
result[i] = sChar[maxID - p[maxID] + + * i];
}
string res;
res.assign(result.begin(), result.end());
return res;
}
};

【JAVA、C++】LeetCode 005 Longest Palindromic Substring的更多相关文章

  1. 【JAVA、C++】LeetCode 003 Longest Substring Without Repeating Characters

    Given a string, find the length of the longest substring without repeating characters. For example, ...

  2. 【JAVA、C++】LeetCode 014 Longest Common Prefix

    Write a function to find the longest common prefix string amongst an array of strings. 解题思路: 老实遍历即可, ...

  3. 【JAVA、C++】LeetCode 002 Add Two Numbers

    You are given two linked lists representing two non-negative numbers. The digits are stored in rever ...

  4. 【JAVA、C++】LeetCode 022 Generate Parentheses

    Given n pairs of parentheses, write a function to generate all combinations of well-formed parenthes ...

  5. 【JAVA、C++】LeetCode 010 Regular Expression Matching

    Implement regular expression matching with support for '.' and '*'. '.' Matches any single character ...

  6. 【JAVA、C++】 LeetCode 008 String to Integer (atoi)

    Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. ...

  7. 【JAVA、C++】LeetCode 007 Reverse Integer

    Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123, return -321 解题思路:将数字 ...

  8. 【JAVA、C++】LeetCode 006 ZigZag Conversion

    The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like ...

  9. 【JAVA、C++】LeetCode 004 Median of Two Sorted Arrays

    There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two ...

随机推荐

  1. <supports-screens>的用法

    <supports-screens android:resizeable=["true"| "false"] android:smallScreens=[ ...

  2. Query对象与DOM对象之间的转换方法

    转自http://www.jquerycn.cn/a_4561 刚开始学习jQuery,可能一时会分不清楚哪些是jQuery对象,哪些是DOM对象.至于DOM对象不多解释,我们接触的太多了,下面重点介 ...

  3. Python input()和raw_input()的区别

    当输入为数字的时候,input()获得的是数字,而后者获得的是str,可以用int(raw_input())来转换. i = input() print i+1 j = raw_input() pri ...

  4. IOS基础之 (九) Foundation框架

    一NSNumber 类型转换 NSNumber 把基本数据类型包装成一个对象类型.NSNumber之所以可以(只能)包装基本数据类型,是因为继承了NSValue. @20 等价于 [NSNumber ...

  5. MySql批处理的小窍门:排行榜类数据生成

    MySql批处理的小窍门:排行榜类数据生成 最近在做新版本的开发,其中涉及到排行榜的批量预生成,在此分享给大家. 关键点 名次的计算(不考虑用游标) 单榜单查询 对于排行榜这种类型的数据,当只查一个排 ...

  6. zabbix表结构

    zabbix数据库表结构的重要性 想理解zabbix的前端代码.做深入的二次开发,甚至的调优,那就不能不了解数据库的表结构了. 我们这里采用的zabbix1.8.mysql,所以简单的说下我们mysq ...

  7. sencha touch list(列表)、 store(数据源)、model(模型)详解

    //求职 Ext.define('app.model.Staff', { extend: 'Ext.data.Model', config: { fields: [{ name: 'id', type ...

  8. MySql数据类型详解

    可配合http://www.cnblogs.com/langtianya/archive/2013/03/10/2952442.html学习 MySql数据类型 1.整型(xxxint)   MySQ ...

  9. 通过ajax访问aspx的CodeBehind中的方法

    引言 在项目中突然看到,aspx中的ajax可以访问aspx.cs中的方法,觉得很新奇,也许是lz少见多怪,不过,真的有发现新大陆似的那种兴奋,你也许知道这代表什么,学会了这种方式,代表你以后,可以建 ...

  10. linux wget 命令用法详解(附实例说明)

    Linux wget是一个下载文件的工具,它用在命令行下.对于Linux用户是必不可少的工具,尤其对于网络管理员,经常要下载一些软件或从远程服务器恢复备份到本地服务器   Linux wget是一个下 ...