5.?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
問題描述
就是給你一個字符串摊沉,找出最長的回文子字符串肉拓。
解法1:
就是循環(huán)遍歷,一個個比對,但是這個解法時間肯定最慢,時間復(fù)雜度要O(n^3)
解法2:
Given a string?s, find the longest palindromic substring in?s. You may assume that the maximum length of?s?is 1000
問題描述
就是給你一個字符串摊沉,找出最長的回文子字符串肉拓。
解法1:
就是循環(huán)遍歷,一個個比對,但是這個解法時間肯定最慢,時間復(fù)雜度要O(n^3)
解法2: