题目链接:Combination Sum II
Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.
Each number in C may only be use...
分类:
其他好文 时间:
2015-02-06 21:48:23
阅读次数:
290
Given a sorted integer array where the range of elements are [lower,upper] inclusive, return its missing ranges.For example, given[0, 1, 3, 50, 75],lo...
分类:
其他好文 时间:
2015-02-06 21:46:55
阅读次数:
232
在业务层AMImpl对VO进行查询主要有两种方式:1、设计时附上where子句设计时在VO视图的edit query窗口,输入where子句,设置bind variabs2、运行时附加where子句String whereClause = ”name = :bind_name";//查询子句调用VO...
分类:
其他好文 时间:
2015-02-06 18:32:46
阅读次数:
146
解决方式:1.通过在命令行中输入“where java”,找到除jdk目录下的所有java相关程序,直接删掉(一般会在C:\WINDOWS\system32下)2.内存不足,打开Eclipse目录下的eclipse.ini,把里面的-Xmx512m改成-Xmx256m3.检查环境变量,path变量中...
分类:
系统相关 时间:
2015-02-06 18:29:43
阅读次数:
224
SQL的使用莫非就是插入,删除,更新,查询。
首先要了解语法
例如有个表格table 里面有a和b两个列
insert into table(a,b) values(1,2)
update table set a=1 where a=2
delete from table where a=1
delete from table
select a,b from table where...
分类:
移动开发 时间:
2015-02-06 16:53:44
阅读次数:
158
There are N gas stations along a circular route, where the amount of gas at station i is gas[i].
You have a car with an unlimited gas tank and it costs cost[i] of gas to travel from station i to
...
分类:
其他好文 时间:
2015-02-06 15:06:34
阅读次数:
180
最近看到很多前辈都用了left join on,于是在网上查了好久,感觉说的不大对劲,于是,亲测了一下。虽然不严谨,但是,已经反映一般规律了。
亲测SQL left join on 和 where 效率
纪念一下自己测试的结果:
where 用了1点多秒
下面是left join ,只有0点几秒,十倍差距啊。数据量只有几万条,估计数据量几千万时,差别就更大了。...
分类:
数据库 时间:
2015-02-06 15:03:42
阅读次数:
252
该命令使用一条语句从一个或者多个数据源中完成对表的更新和插入数据. ORACLE 9i 中,使用此命令必须同时指定UPDATE 和INSERT 关键词,ORACLE 10g 做了如下改动。1,insert 和update是可选的 2,UPDATE 和INSERT 后面可以跟WHERE 子句 3,在O...
分类:
数据库 时间:
2015-02-06 14:29:07
阅读次数:
255
linux平台下,我们一般通过TOP命令,查看性能消耗最大的进程,如果看到是oracle进行,那么就需要通过进程号,查询该进程当前执行的SQL语句,网上百度有很多SQL,我一般通过下面的方式进行查找:
通过操作系统上的PID找出相应的SQL语句的SID:
SELECT s.sid, p.spid FROM v$session s, v$process p WHERE s.paddr = p...
分类:
数据库 时间:
2015-02-06 13:17:55
阅读次数:
131
Calculate the an % b where a, b and n are all 32bit integers.ExampleFor 231 % 3 = 2For 1001000 % 1000 = 0ChallengeO(logn)数学问题,要求O(log n)的时间复杂度,也就是每次去掉...
分类:
其他好文 时间:
2015-02-06 13:12:25
阅读次数:
170