LeetCode-5. 最長迴文子串(Manacher)
5. 最長迴文子串
給定一個字串 s,找到 s 中最長的迴文子串。你可以假設 s 的最大長度為1000。
示例 1:
輸入: "babad" 輸出: "bab" 注意: "aba"也是一個有效答案。
示例 2:
輸入: "cbbd" 輸出: "bb"
#include<bits/stdc++.h>
using namespace std;
/********************提交程式碼********************/
char* longestPalindrome(char* s)
{
int i,n=0,len=strlen(s);
char *str=(char*)malloc((3*len)*sizeof(char));
int *p=(int*)malloc((3*len)*sizeof(int));
str[n++]='$';//加入字串首部的字串
for(i=0; s[i]; i++)
{
str[n++]='#';
str[n++]=s[i];
}
str[n++]='#';
str[n]='\0';
int mx=0,id,pos=0,r=0,val=0;;
p[0]=0;
for(i=1; i<n; i++)
{
if(mx>i)
if(p[2*id-i]<mx-i)//p[i]表示i處的迴文長度
p[i]=p[2*id-i];
else
p[i]=mx-i;
else//如果i大於mx,則必須重新自己算
p[i]=1;
while(str[i-p[i]]==str[i+p[i]])//迴文串的半徑
p[i]++;
if(p[i]+i>mx)//記錄目前回文字串擴充套件最長的id
{
mx=p[i]+i;
id=i;
}
if(p[i]>r)
r=p[i],pos=i;
}
int cnt=0;
val=(r-1);//最長迴文串的長度
pos/=2;//迴文串中心位置
char *ans=(char*)malloc((val+1)*sizeof(char));
if(val%2)
for(i=pos-val/2-1; i<pos+val/2; ++i)
ans[cnt++]=s[i];
else
for(i=pos-val/2; i<pos+val/2; ++i)
ans[cnt++]=s[i];
ans[cnt]='\0';//不加結束符在OJ上會有多餘輸出
return ans;
}
/***************************************************/
int main()
{
#ifdef ONLINE_JUDGE
#else
freopen("F:/cb/read.txt","r",stdin);
//freopen("F:/cb/out.txt","w",stdout);
#endif
ios::sync_with_stdio(false);
cin.tie(0);
char s[1000];
while(cin.getline(s,1000))
{
cout<<"/"<<longestPalindrome(s)<<"/"<<endl;
}
return 0;
}
最慘的是因為ans結尾沒加\0在OJ上結尾會有多餘輸出卡了好久……┭┮﹏┭┮
Manacher-求最長迴文字串 基本就是這個程式碼改的,On的複雜度。
輸出是擷取字串起始位置是:中心點座標-最大長度/2。
相關文章
- 最長迴文子串 V2(Manacher演算法)演算法
- java 最長迴文子串Java
- hdu5371 最長迴文子串變形(Manacher演算法)演算法
- hihocoder 1032 最長迴文子串 (Manacher演算法 詳解+模板)演算法
- HDU 3068 最長迴文(Manacher演算法解決最長迴文串問題)演算法
- 演算法-兩最長迴文子串演算法
- LEECODE 5 求最長迴文子串
- [動態規劃] 六、最長迴文子串動態規劃
- LeetCode 5.最長迴文子串LeetCode
- 演算法之字串——最長迴文子串演算法字串
- Amazon面試題:尋找最長迴文子串面試題
- 今日面試題:最長迴文子串;及迴文分割分析面試題
- Leetcode[字串] 5. 最長迴文子串LeetCode字串
- 翻譯數字串;及最長迴文子串分析字串
- leedcode-最長迴文串
- 程式碼隨想錄day46 || 647 迴文子串, 516 最長迴文子序列
- 每日一道 LeetCode (48):最長迴文子串LeetCode
- [LeetCode] Longest Palindromic Substring 最長迴文子串LeetCode
- ural 1297 最長迴文子串 字尾陣列陣列
- leetcode 解題 5. 最長迴文子串 python@ 官解,暴力法,動態法,manacher 法LeetCodePython
- 最長子串
- 每天一道演算法題:最長迴文子串演算法
- LeetCode - 409 - 最長迴文串LeetCode
- lc1771 由子序列構造的最長迴文串的長度
- Leetcode5: Longest Palindromic Substring(最長迴文子串)LeetCode
- Manacher-求最長迴文字串字串
- 最長迴文子串(百度筆試題和hdu 3068)筆試
- 程式碼隨想錄演算法訓練營 | 647. 迴文子串,516.最長迴文子序列演算法
- lCS(最長公共子串)
- L2-008 最長對稱子串【最長迴文字串】字串
- 找到最長迴文字串 - Manacher's Algorithm字串Go
- 程式碼隨想錄演算法訓練營day46| 647. 迴文子串 516.最長迴文子序列演算法
- 通俗易懂的最長迴文串圖解、說明及Java程式碼(中心擴散法和Manacher演算法)圖解Java演算法
- 程式碼隨想錄演算法訓練營第五十七/天 | 516. 最長迴文子序列,647. 迴文子串演算法
- 線性dp:最長公共子串
- LeetCode516. 最長迴文子序列LeetCode
- 兩個字串的最長公共子串字串
- 無重複字元的最長子串字元