Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longes ...
分类:
编程语言 时间:
2016-06-29 13:00:29
阅读次数:
138
5. Longest Palindromic Substring Total Accepted: 115366 Total Submissions: 492202 Difficulty: Medium Given a string S, find the longest palindromic su ...
分类:
其他好文 时间:
2016-06-25 23:05:59
阅读次数:
144
问题:https://leetcode.com/problems/longest-palindromic-substring/ 给定一个字符串 S,求出 S 的最长回文子串 思路: 1. 回文:一个字符串从前和从后读一致。S = "ABBA" 从前读:ABBA,从后读:ABBA 2. 最简单的做法: ...
分类:
其他好文 时间:
2016-06-19 18:14:53
阅读次数:
132
题目描述: Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique ...
分类:
其他好文 时间:
2016-06-07 22:14:50
阅读次数:
193
Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longes ...
分类:
编程语言 时间:
2016-06-06 10:24:57
阅读次数:
298
我的leetcode之旅,该篇章主要完成使用Java实现算法。这是第5篇 Longest Palindromic Substring...
分类:
编程语言 时间:
2016-05-30 15:37:44
阅读次数:
127
题目链接:https://leetcode.com/problems/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, and ...
分类:
其他好文 时间:
2016-05-30 14:53:40
阅读次数:
150
Given a string S,
find the longest palindromic substring in S.
You may assume that the maximum length of S is
1000, and there exists one unique longest palindromic substring.
题目:查找字符串中最长回文子...
分类:
其他好文 时间:
2016-05-12 22:22:17
阅读次数:
207
1019. General Palindromic Number (20)
时间限制
400 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue
A number that will be the same ...
分类:
其他好文 时间:
2016-05-12 17:40:32
阅读次数:
168