【JAVA、C++】LeetCode 005 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.
解题思路一:
暴力枚举
共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的更多相关文章
- 【JAVA、C++】LeetCode 003 Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters. For example, ...
- 【JAVA、C++】LeetCode 014 Longest Common Prefix
Write a function to find the longest common prefix string amongst an array of strings. 解题思路: 老实遍历即可, ...
- 【JAVA、C++】LeetCode 002 Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in rever ...
- 【JAVA、C++】LeetCode 022 Generate Parentheses
Given n pairs of parentheses, write a function to generate all combinations of well-formed parenthes ...
- 【JAVA、C++】LeetCode 010 Regular Expression Matching
Implement regular expression matching with support for '.' and '*'. '.' Matches any single character ...
- 【JAVA、C++】 LeetCode 008 String to Integer (atoi)
Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. ...
- 【JAVA、C++】LeetCode 007 Reverse Integer
Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123, return -321 解题思路:将数字 ...
- 【JAVA、C++】LeetCode 006 ZigZag Conversion
The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like ...
- 【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 ...
随机推荐
- 【poj1236】 Network of Schools
http://poj.org/problem?id=1236 (题目链接) 题意 给定一个有向图,求:1.至少要选几个顶点,才能做到从这些顶点出发,可以到达全部顶点:2.至少要加多少条边,才能使得从任 ...
- on the way to Peking University
明天就要去北京参加北大夏令营了,希望这次能有所斩获! on the way to Peking University
- BZOJ2301 莫比乌斯反演
题意:a<=x<=b,c<=y<=d,求满足gcd(x,y)=k的数对(x,y)的数量 ((x,y)和(y,x)不算同一个) 比hdu1695多加了个下界,还有 ...
- OpenJudge 7627 鸡蛋的硬度
描述 最近XX公司举办了一个奇怪的比赛:鸡蛋硬度之王争霸赛.参赛者是来自世 界各地的母鸡,比赛的内容是看谁下的蛋最硬,更奇怪的是XX公司并不使用什么精密仪器来测量蛋的硬度,他们采用了一种最老土的办法- ...
- java导出txt文本
页面 项目结构 html代码 <html> </head> <body> <form action="down/downLoad" met ...
- IPC机制
转:http://blog.chinaunix.net/uid-26125381-id-3206237.html IPC 三种通信机制 2012-05-13 17:23:55 最近看了,IPC三种通 ...
- C++ STL之stack
因为总用vector,却忘记了有stack,今天用到栈顶的值才想起来,说起来stack很方便,也很容易用,看下边例子: #include<stack> #include<iostre ...
- android.net.wifi的简单使用方法
获取Wifi的控制类WifiManager. WifiManager wm=(WifiManager)getSystemService(Context.WIFI_SERVICE); 接下来可以对w ...
- something about english
Molten lava from a volcano will solidify as it cools. The shuttle bus makes my commute to work conve ...
- webexam项目杂记2
strstr,stristr是返回匹配到的字符串,常规的字符串操作尽量避免使用正则, strstr是返回从匹配字符(串)开始(包括该匹配字符串)到结束的(或开头的)字符串 而如果仅仅只是判断是否包含匹 ...