leetcode 5 最長回文子串

2021-09-22 16:42:16 字數 1308 閱讀 6483

給定乙個字串s,找到s中最長的回文子串。你可以假設s的最大長度為 1000。

示例 1:

輸入:"babad"輸出:"bab"注意:"aba" 也是乙個有效答案。
示例 2:

輸入:"cbbd"輸出:"bb"
新鮮現做 幸福coding

class solution(object):

def longestpalindrome(self, s):

""":type s: str

:rtype: str

"""length = len(s)

if not s:

return ""

max_length = 1

result_s = s[0]

for index, char in enumerate(s):

start = index

end = index

while start >=0 and end <= (length -1) and s[start] == s[end]:

start -=1

end +=1

if (end - start - 1) > max_length:

max_length = end - start -1

result_s = s[start + 1: end]

for index, char in enumerate(s):

start = index

end = index

if index +1 <= (length-1) and s[index] == s[index +1]:

end = end +1

while start >=0 and end <= (length -1) and s[start] == s[end]:

start -=1

end +=1

if (end - start - 1) > max_length:

max_length = end - start -1

result_s = s[start + 1: end]

return result_s

小結:中心擴充套件法。考慮兩種情況:一、中心只有乙個字母;二,中心有兩個相同字母。更多思路參考

LeetCode5最長回文子串

給定乙個字串s,找到s中最長的回文子串。你可以假設s長度最長為1000。示例 輸入 babad 輸出 bab 注意 aba 也是有效答案示例 輸入 cbbd 輸出 bb 動態規劃來做,每個回文字串的子字串也是回文字串,即string是回文字串那麼它的string.substring 1,lenth ...

LeetCode 5 最長回文子串

問題描述 給定乙個字串s,找到s中最長的回文子串。你可以假設s的最大長度為1000。示例 1 輸入 babad 輸出 bab 注意 aba 也是乙個有效答案。示例 2 輸入 cbbd 輸出 bb 解決方案 中心擴充套件演算法 事實上,只需使用恆定的空間,我們就可以在 o n 2 的時間內解決這個問題...

leetcode5 最長回文子串

遞推式 1 一般 s i 1 s j 1 and j i and j i len s i 1,j 1 2 初始化dp矩陣對角線的值為 true,相鄰兩個元素相等時dp i i 1 為true 初始化回文串起始位置和長度。def longestpalindrome s n len s if s ret...