题目: Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which the ...
分类:
其他好文 时间:
2016-05-13 12:42:30
阅读次数:
114
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
[1667] Hkhv Loves Sequences
时间限制: 1000 ms 内存限制: 65535 K
问题描述
Hkhv has a sequence a, consisting of n integers.
We'll call a sequence ai,ai+1,...,aj (1
Your task is to find the longest subs...
分类:
其他好文 时间:
2016-05-12 21:02:31
阅读次数:
201
Longest Ordered Subsequence
Time Limit : 4000/2000ms (Java/Other) Memory Limit : 131072/65536K (Java/Other)
Total Submission(s) : 6 Accepted Submission(s) : 1
Problem Description
A numeric se...
分类:
其他好文 时间:
2016-05-12 16:21:17
阅读次数:
127
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-05-11 13:11:19
阅读次数:
154
Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which the leng ...
分类:
其他好文 时间:
2016-05-11 10:53:03
阅读次数:
118
题目: Write a function to find the longest common prefix string amongst an array of strings. 题目解答: 求一组字符串的最长公共前缀。使用迭代器数组实现。思路异常的简单。 代码如下: class Solution ...
分类:
其他好文 时间:
2016-05-10 12:55:25
阅读次数:
134
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-05-10 12:23:43
阅读次数:
187
什么是 LCSs? 什么是 LCSs? 好多博友看到这几个字母可能比较困惑,因为这是我自己对两个常见问题的统称,它们分别为最长公共子序列问题(Longest-Common-Subsequence)和最长公共子串(Longest-Common-Substring)问题。这两个问题非常的相似,所以bbs.chinaacc.com/forum-2-3/topic-5611515.html
bbs.ch...
分类:
Web程序 时间:
2016-05-09 07:04:23
阅读次数:
207
1. 什么是 LCSs? 什么是 LCSs? 好多博友看到这几个字母可能比较困惑,因为这是我自己对两个常见问题的统称,它们分别为最长公共子序列问题(Longest-Common-Subsequence)和最长公共子串(Longest-Common-Substring)问题。这两个问题非常的相似,所以 ...
分类:
Web程序 时间:
2016-05-08 16:25:54
阅读次数:
309