码迷,mamicode.com
首页 >  
搜索关键字:number    ( 26994个结果
表连接
主要的表连接类型: 嵌套循环 哈希连接 排序合并 各种连接类型的差异: 访问次数: 嵌套循环:驱动表查询n条记录,被驱动表访问n次。 SQL> create table t1(id number not null,n number,contents varchar2(4000)); Table cr...
分类:其他好文   时间:2015-04-21 12:55:00    阅读次数:145
js学习随笔一:对象简单、深度克隆(复制)
javascript的一切实例都是对象,只是对象之间稍有不同,分为原始类型和合成类型。原始类型对象指的是字符串(String)、数值(Number)、布尔值(Boolean),合成类型对象指的是数组(Array)、对象(Object)、函数(Function)。既然对象分为这两类,他们之间的最大差别...
分类:Web程序   时间:2015-04-21 12:51:56    阅读次数:104
[LeetCode] 001. Two Sum
Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two nu...
分类:其他好文   时间:2015-04-21 12:45:40    阅读次数:168
【LR】录制测试脚本中的基本菜单
学习来源:MBoo,小强老师性能测试及Loadrunner培训 ——录制测试脚本:1.Vuser -> run-time settings->GeneralRun Logic : set Number ofiteration(迭代次数)Pacing(协定):Start new Iteration ....
分类:其他好文   时间:2015-04-21 12:36:46    阅读次数:126
leetcode || 104、Maximum Depth of Binary Tree
problem: 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. Hide Tags  Tr...
分类:其他好文   时间:2015-04-21 11:20:10    阅读次数:108
DB2 单张表 merge语句
merge into CHANNEL_AGENT_PEOPLE_NUMBER_201503 a using (SELECT ? TIME_ID,? CITY_NAME,? NODE_NAME,? NODE_CODE,? PEOPLE_NUMBER, ? VEHICLE_RUNNING_COSTS,? MAIL_TRANSPORT_FEES,? TRAINING_COSTS, ? CONSUMAB...
分类:数据库   时间:2015-04-21 11:14:37    阅读次数:247
uva 11008 Antimatter Ray Clearcutting(DFS + 记忆化搜索)
uva 11008 Antimatter Ray ClearcuttingIt’s year 2465, and you are the Chief Engineer for Glorified Lumberjacks Inc. on planet Trie. There is a number of trees that you need to cut down, and the only wea...
分类:其他好文   时间:2015-04-21 09:45:12    阅读次数:194
java
public class human{ //类//属性String name;static int number=0// 不赋值也是0 ,静态的属性属于类而不属于对象 ,即可以使用对象来访问也可以使用类名来访问,但是更推荐使用类名来访问,用类名调用静态属性 human.number//构造方法,用来...
分类:编程语言   时间:2015-04-21 00:21:34    阅读次数:143
Largest Number——LeetCode
Given a list of non negative integers, arrange them such that they form the largest number.For example, given[3, 30, 34, 5, 9], the largest formed num...
分类:其他好文   时间:2015-04-20 20:46:31    阅读次数:113
[LeetCode] Two Sum
https://leetcode.com/problems/two-sum/ Given an array of integers, find two numbers such that they add up to a specific target number. The function tw...
分类:其他好文   时间:2015-04-20 18:20:27    阅读次数:95
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!