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. 【Gym 100947E】Qwerty78 Trip(组合数取模/费马小定理)

    从(1,1)到(n,m),每次向右或向下走一步,,不能经过(x,y),求走的方案数取模.可以经过(x,y)则相当于m+n步里面选n步必须向下走,方案数为 C((m−1)+(n−1),n−1) 再考虑其 ...

  2. Hive简单优化;workflow调试

    1. 定义job名字 SET mapred.job.name='customer_rfm_analysis_L1'; 这样在job任务列表里可以第一眼找到自己的任务. 2. 少用distinct, 尽 ...

  3. 37.Activity之间的转换以及数据的传递(Intent)学习

      Intent简介:                                                                                在一个Androi ...

  4. BZOJ1452 [JSOI2009]Count

    Description Input Output Sample Input Sample Output 1 2 HINT 正解:二维树状数组 解题报告: 这是一道送肉题.二维树状数组直接维护每种颜色的 ...

  5. Dancing Links初学记

    记得原来备战OI的时候,WCX大神就研究过Dancing Links算法并写了一篇blog.后来我还写了个搜索策略的小文章( http://www.cnblogs.com/pdev/p/3952279 ...

  6. [NOIP2011] 普及组

    数字反转 小模拟 #include<cstdio> #include<iostream> #include<cstring> using namespace std ...

  7. POJ3784 Running Median

    Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 1670   Accepted: 823 Description For th ...

  8. DLUTOJ 1331 Maximum Sum

    传送门 Time Limit: 1 Sec  Memory Limit: 128 MB  Description You are given an array of size N and anothe ...

  9. iOS学习笔记—ViewController/生命周期

    ViewController是iOS应用程序中重要的部分,是应用程序数据和视图之间的重要桥梁,ViewController管理应用中的众多视图.iOS的SDK中提供很多原生ViewController ...

  10. 微信公众号"赞赏"功能来了 觉得不错就给作者打个赏吧

    微信很早以前就开始测试“赞赏”功能了,只是官方还没出公告,近日腾讯科技就发了一篇题为 试试给微信公众号“赞赏” 的文章,算是一个回应吧.微信打赏功能势在遏制公众账号抄袭,鼓励用户创造优质内容,内容付费 ...