本帖最后由 Miss_Allsunday 于 2017-6-17 08:26 编辑
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. Example: Input: "babad"Output: "bab"Note: "aba" is also a valid answer.
Example: Input: "cbbd"Output: "bb"
给一个字符串s,找出s中最长的回文子字符串。你可以假设s的最大长度为1000。
举例:
输入:“babad”
输出:“bab”
注意:“aba” 同样也是一个合格的答案。
输入:“cbbd”
输出:”bb“
你需要完成以下的函数:
char* longestPalindrome(char* s) {
}
这道题目的网址是:“https://leetcode.com/problems/longest-palindromic-substring/#/description“
|