报错原信息: SG-UAP :ERROR RestExceptionResolver:141 - java.lang.StringIndexOutOfBoundsException: String index out of range: -6 at java.lang.String.substrin ...
分类:
其他好文 时间:
2017-07-06 22:54:33
阅读次数:
955
题目 URL:https://leetcode.com/problems/longest-palindromic-substring 解法 一、循环搜索 对于每一个字符,往后搜索,遇到相同字符,开始判断是否回文串,若是回文串则与当前最长回文串的长度比较,若更长,则更新最长回文串。 显然是三层循环:第 ...
分类:
其他好文 时间:
2017-07-05 23:04:00
阅读次数:
253
LeetCode 5_Longest Palindromic Substring 题目描写叙述: Given a string S, find the longest palindromic substring in S. You may assume that the maximum length ...
分类:
其他好文 时间:
2017-07-01 20:12:24
阅读次数:
162
华电北风吹 天津大学认知计算与应用重点实验室 完毕日期:2015/7/29 Double-base palindromes Problem 36 The decimal number, 585 = 10010010012 (binary), is palindromic in both bases. ...
分类:
其他好文 时间:
2017-07-01 15:25:35
阅读次数:
134
1 public class Solution { 2 /** 3 * @param s input string 4 * @return the longest palindromic substring 5 */ 6 public static String longestPalindrome(... ...
分类:
其他好文 时间:
2017-06-29 15:20:16
阅读次数:
187
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: "b ...
分类:
其他好文 时间:
2017-06-29 09:56:52
阅读次数:
197
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 ...
分类:
其他好文 时间:
2017-06-23 23:47:23
阅读次数:
219
常用函数:substr和instr1.SUBSTR(string,start_position,[length]) 求子字符串,返回字符串解释:string 元字符串start_position 开始位置(从0开始)length 可选项,子字符串的个数 2.INSTR(string,subStrin ...
分类:
数据库 时间:
2017-06-23 21:00:36
阅读次数:
219
${#string}返回$string的长度${string:position}在$string中,从位置$position之后开始提取子串$(string:position:length)在$string中,从位置$position之后开始提取长度为$length的子串${string#substring}从变量$string开头开始删除最短匹配$substring子串$(string##substrin..
分类:
其他好文 时间:
2017-06-19 22:19:52
阅读次数:
412
Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. Example: Example: ...
分类:
其他好文 时间:
2017-06-17 12:11:51
阅读次数:
128