LongestPalidrmicSubstring
Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000.
example
Input: “babad”
Output: “bab”
Note: “aba” is also a valid answer.
Input: “cbbd”
Output: “bb”
思路
这个题我的答案并不巧妙,只能说是完成了任务。不过还是要说一下注意点:
- 对连续的相同字符的处理
- 如果a[p..q]是palidrmic串,如果a[p-1]=a[q+1],那么a[p-1..q+1]也是palidrmic串
在leetcode的discuss专栏里有很多出色的解答,希望大家移步讨论区去自行学习。
coding
|
|