码迷,mamicode.com
首页 >  
搜索关键字:longest substring    ( 5540个结果
C# Substring的用法
方法1 Substring(Int32) 从此实例检索子字符串。 子字符串在指定的字符位置开始并一直到该字符串的末尾。方法2 Substring(Int32, Int32) 从此实例检索子字符串。 子字符串从指定的字符位置开始且具有指定的长度。参数一:起始位置(从0开始)参数二...
分类:Windows程序   时间:2014-11-24 11:43:12    阅读次数:202
[Leetcode] Palindrome Partitioning II
Given a strings, partitionssuch that every substring of the partition is a palindrome.Return the minimum cuts needed for a palindrome partitioning ofs...
分类:其他好文   时间:2014-11-24 11:30:48    阅读次数:161
lang包(上)
lang包的基础知识--用心整理,很有用...
分类:其他好文   时间:2014-11-24 10:13:36    阅读次数:150
文件存入数据库
function ajaxFileUpload() { var File_box = document.getElementById('Download_file'); //var extend = File_box.value.substring(File_box.value.lastIndex....
分类:数据库   时间:2014-11-24 09:58:05    阅读次数:194
Leetcode-Longest Consecutive Sequence
Given an unsorted array of integers, find the length of the longest consecutive elements sequence. For example,Given [100, 4, 200, 1, 3, 2],The longes...
分类:其他好文   时间:2014-11-24 00:49:37    阅读次数:239
[LeetCode] Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo...
分类:其他好文   时间:2014-11-23 14:21:58    阅读次数:205
Longest Consecutive Sequence
Given an unsorted array of integers, find the length of the longest consecutive elements sequence.For example,Given[100, 4, 200, 1, 3, 2],The longest ...
分类:其他好文   时间:2014-11-23 09:16:30    阅读次数:150
java从后向前提取后面的几位字符
String str="abcdefgh"; String newStr=String.SubString(str.length()-i); //从后向前第i位提取 System.out.println(newStr); // 将输出字符串最后三位字符fgh...
分类:编程语言   时间:2014-11-22 20:19:28    阅读次数:206
c#下载图片
String ImgUrl2 = context.Request.QueryString["ImgUrl"]; String ImgUrl = ImgUrl2.Substring(0, ImgUrl2.Length - (ImgUrl2.Length - ImgUrl2.LastIn...
分类:Windows程序   时间:2014-11-22 15:50:07    阅读次数:306
Palindrome II
Problem StatementGiven a string s, partition s such that every substring of the partition is a palindrome.Return the minimum cuts needed for a palindr...
分类:其他好文   时间:2014-11-22 13:20:44    阅读次数:301
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!