码迷,mamicode.com
首页 >  
搜索关键字:longest substring    ( 5540个结果
水晶报表2
//报表路径srgstring strg = Application.StartupPath.ToString(); strg = strg.Substring(0, strg.LastIndexOf("\\")); strg = strg.Substring(0, strg.LastIndexOf...
分类:其他好文   时间:2014-12-17 12:23:55    阅读次数:105
针对含有多级文件夹时,文件创建
/多级目录文件创建 /storage/sdcard0/security/upadte/new.apk File file = new File(filePath); //createFolderandFile(file); //创建多级文件夹 File Folder = new File(filePath.substring(0,filePath.last...
分类:其他好文   时间:2014-12-17 09:09:11    阅读次数:195
leetcode Compare Version Numbers
Compare two version numbersversion1andversion1.Ifversion1>version2return 1, ifversion11) {11 versionsOne[i]=versionsOne[i].substring(1...
分类:其他好文   时间:2014-12-16 22:23:34    阅读次数:211
Maximum Depth of Binary Tree
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/41964475 Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node....
分类:其他好文   时间:2014-12-16 21:07:51    阅读次数:197
zepto - scrollLeft
The longest word in the english dictionary is: pneumonoultramicroscopicsilicovolcanoconiosis.把滚动条的水平位置设置为 100px$("button").click(function(){ ...
分类:其他好文   时间:2014-12-16 18:55:22    阅读次数:683
String.subString的用法
在做项目的时候,碰到一个过滤字符串的问题,因为一直无法正常的描述完整这个字符串的信息,所以想到截取部分差异化的字符来解决这个问题 String,substrinf(start,end); 这个函数的使用的时候,可以很方便的截取到你想的的部分字符串 再结合String.equals();来做一个比较,就可以很轻松的过滤掉含有这类字符串的信息了 例如: String text = "Mob...
分类:其他好文   时间:2014-12-16 15:08:01    阅读次数:171
我的SQL里哪个语句占用的CPU最多?
可以使用下面的语句来得到 SELECT SUBSTRING(qt.TEXT, (qs.statement_start_offset/2)+1, ( (CASE qs.statement_end_offset WHEN -1 THEN DATALENGTH(qt.TEXT) ELSE qs.stat....
分类:数据库   时间:2014-12-16 15:01:57    阅读次数:185
[译]最长回文子串(Longest Palindromic Substring) Part II
问题:给定字符串S,求S中的最长回文子串。 本篇将讨论一个O(N)时间O(N)空间的算法,即著名的Manacher算法,并详细说明其时间复杂度为何是O(N)。
分类:其他好文   时间:2014-12-15 23:23:40    阅读次数:356
[LeetCode]Palindrome Partitioning
Given a string s, partition s such that every substring of the partition is a palindrome. Return all possible palindrome partitioning of s. For example, given s = "aab", Return [ ["aa","...
分类:其他好文   时间:2014-12-15 21:52:33    阅读次数:145
Maximum Depth of Binary Tree
Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node. /** * Definition for binary tree ...
分类:其他好文   时间:2014-12-15 21:52:22    阅读次数:124
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!