码迷,mamicode.com
首页 >  
搜索关键字:le    ( 2309个结果
SQL截取字符串
SQL截取字符串SUBSTRING返回字符、binary、text或 image表达式的一部分。有关可与该函数一起使用的有效 Microsoft® SQL Server™数据类型的更多信息,请参见数据类型。语法SUBSTRING ( expression , start , le...
分类:数据库   时间:2014-06-28 21:15:18    阅读次数:345
[LeetCode] 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 le...
分类:其他好文   时间:2014-06-18 12:51:52    阅读次数:205
Period(sdut2476)
[题目大意]:给定一个字符串,求到哪一位时的字串是前几位循环组成的,并求出循环次数。思路:求每个前缀的最小循环周:从i到n枚举len,如果len%(len-next[len])==0,则这个前缀是由循环节组成的,且循环次数为len/(len-next[len])//len为当前i的值,next[le...
分类:其他好文   时间:2014-06-17 23:33:28    阅读次数:304
剑指offer (19) 二叉树镜像 对称二叉树
题目:输入一个二叉树,输出其镜像。BinTreeNode* ReverseTree(BinTreeNode* pRoot){ if (pRoot == NULL) return NULL; BinTreeNode* pLeftReverse = ReverseTree(pRoot->le...
分类:其他好文   时间:2014-06-15 19:40:38    阅读次数:149
JavaScript 数据类型转换
转换成字符串     ECMAScript 的 Boolean 值、数字和字符串的原始值的有趣之处在于它们是伪对象,这意味着它们实际上具有属性和方法。例如,要获得字符串的长度,可以采用下面的代码:    var sColor = "red"; alert(sColor.length); //输出 "3"   尽管 "red" 是原始类型的字符串,它仍然具有属性 le...
分类:编程语言   时间:2014-06-15 16:45:49    阅读次数:317
poj 1936
题意:给定两个字符串 判断是否在第二个字符串中存在子串(可以不连续)为第一个穿大水体#includeusing namespace std;char s[100001],t[100001];int main(){ int ls,le; int ts,te; int l1,l2; ...
分类:其他好文   时间:2014-06-14 20:41:37    阅读次数:184
CycloneII之EDA及学术开发功能描述
1.概述 同Stratix/Cyclone。2.逻辑单元(Logic Cell)描述在以前的架构中(比如Cyclone),单个LE包括一个组合逻辑和寄存器。对于Cyclone II来说,组合逻辑和寄存器被单独分开到两个部分,原语创建的时候也不象Cyclone和Stratix那样,而是通过lcell_...
分类:其他好文   时间:2014-06-14 18:25:09    阅读次数:381
[LeetCode] 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 le...
分类:其他好文   时间:2014-06-12 18:32:00    阅读次数:222
startDiscovery() and startLeScan().
You have to start a scan for Classic Bluetooth devices with startDiscovery() and a scan for Bluetooth LE devices with startLeScan(). Caution: Performi...
分类:其他好文   时间:2014-06-11 13:20:21    阅读次数:424
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!