A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

本帖最后由 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“

评分

参与人数 1黑马币 +5 收起 理由
zhao543 + 5 赞一个!

查看全部评分

4 个回复

倒序浏览
占楼,待发答案。
回复 使用道具 举报
学习了,大神.
回复 使用道具 举报
前面那段英文是什么鬼
回复 使用道具 举报
wx19960123 发表于 2017-6-15 23:38
前面那段英文是什么鬼

那些是原题,由于我怕我翻译的不太好,有看得懂的直接看原题会更方便一些,而且测试还是需要到那个官网测试比较好。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马