码迷,mamicode.com
首页 >  
搜索关键字:single number    ( 31458个结果
Leetcode: Letter Combinations of a Phone Number
像这种DFS的题目,常见的写法无外乎两种,使用recursion, 或者用Stack。本文采用了stack的方式。做完后积累的经验有:像这种在一个ArrayList里面罗列可能的path的题目,recursion的参数一般包括:包含最终结果的集合(ArrayList),input(String),递...
分类:其他好文   时间:2014-06-13 08:34:10    阅读次数:220
Oracle EBS-SQL (OM-1):查询订单发货明细.sql
select mtrh.request_number 发货单号, mmt.transaction_date 发货时间, oola.creation_date 下单时间, nvl(fu.description, fu.user_name) 下单人员, ott.name 订单类型, qp.name 价目...
分类:数据库   时间:2014-06-13 00:53:06    阅读次数:1243
WCF之并发,吞吐量和限流
并发Single重入模式.对于每一个服务实例,同一时刻只能处理一个请求,其他对该实例的请求被排队.PerCall,每一线程会分配一个新的服务实例上。不会有并发性问题。不影响吞吐量.PerSession,保护服务实例不会受到多线程客户端的影响.多客户端可以并发访问,无并发性问题。减少单一客户端吞吐量....
分类:其他好文   时间:2014-06-13 00:16:37    阅读次数:708
[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
js变量类型及检查
一、变量的类型 JavaScript 有六种数据类型。主要的类型有 Number、String、object 以及 Boolean 类型,其他两种类型为 null 和 undefined。var obj = {x:[1,2],y:23};//Object类型 i=100;//Number类型 i="...
分类:Web程序   时间:2014-06-12 18:00:51    阅读次数:267
[leetcode]Maximum Subarray @ Python
原题地址:https://oj.leetcode.com/problems/maximum-subarray/题意:Find the contiguous subarray within an array (containing at least one number) which has the ...
分类:编程语言   时间:2014-06-12 17:06:04    阅读次数:339
访问控制列表(二)
一扩展访问控制列表的配置1:创建ACLRouter(config)#access-listaccess-list-number{permit|deny}protocol{sourcesource-wildcarddestinationdestination-wildcard}[operatoroperan]命令参数详细说明:access-list-number:访问控制列表表号,对于扩展ACL来说,是100—199的一个..
分类:其他好文   时间:2014-06-10 22:22:39    阅读次数:469
Valid Number
题目 Validate if a given string is numeric. Some examples: "0" => true " 0.1 " => true "abc" => false "1 a" => false "2e10" => true Note: It is intended for the problem statement t...
分类:其他好文   时间:2014-06-10 17:32:23    阅读次数:174
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!