码迷,mamicode.com
首页 >  
搜索关键字:longest palindromic    ( 2914个结果
无重复字符的最长子串
题目:给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。 示例 1: 示例 2: 示例 3: 解法: 滑动窗口思想 ...
分类:其他好文   时间:2019-02-04 18:16:03    阅读次数:192
SPOJ1812 Longest Common Substring II
题意 A string is finite sequence of characters over a non empty finite set Σ. In this problem, Σ is the set of lowercase letters. Substring, also called ...
分类:其他好文   时间:2019-02-01 23:30:09    阅读次数:205
19.2.1 [LeetCode 32] Longest Valid Parentheses
Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring. Example 1: Exampl ...
分类:其他好文   时间:2019-02-01 19:50:13    阅读次数:125
LeetCode-86-Longest Palindromic Characters
算法描述: Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x. You should preserv ...
分类:其他好文   时间:2019-02-01 14:19:34    阅读次数:158
LeetCode-5-Longest Palindromic Characters
算法描述: Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. Example 1: Examp ...
分类:其他好文   时间:2019-02-01 14:12:17    阅读次数:161
LeetCode-5-Longest Palindromic Characters
算法描述: Given an array of strings, group anagrams together. Example: Note: All inputs will be in lowercase. The order of your output does not matter. 解题 ...
分类:其他好文   时间:2019-01-29 20:47:18    阅读次数:200
[leetcode]3-Longest Substring Without Repeating Characters
3. Longest Substring Without Repeating Characters 1)题目 2)思路 先写一个子函数,输入数组下标,母字符串,往后遍历,获得下标出最长子串长度。 遍历母字符串,调用子函数,获得每一位长度,放入数组里。 获取数组最大值。 3) 代码 public in ...
分类:其他好文   时间:2019-01-28 00:58:44    阅读次数:200
[leetcode]5-Longest Palindromic Substring
5. Longest Palindromic Substring 1)题目 2)思路 遍历s, 判断每一位为中间位的最大回文子串。 比较即可。 3) 代码 4) 结果 时间复杂度:O(n^2) 空间复杂度:O(n) 耗时: 5) 调优 ...
分类:其他好文   时间:2019-01-28 00:56:12    阅读次数:144
HDU-1403-Longest Common Substring(后缀数组的高度数组运用)
这题要求两个串中的最长相同子串的长度。高度数组可以求一个串中的最长相同子串的长度。所以想到把两个串连起来,但是这样又会产生一些新的串(第一个串的结尾和第二个串的开头组成的)于是在两个串中间放一个'\0'分隔,正好'\0'是字符里最小的,不会对第一个串的排序产生影响。 ...
分类:编程语言   时间:2019-01-27 16:39:03    阅读次数:187
PTA-1019——General Palindromic Number
题目: 题目: A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromi ...
分类:其他好文   时间:2019-01-27 16:33:20    阅读次数:132
2914条   上一页 1 ... 42 43 44 45 46 ... 292 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!