码迷,mamicode.com
首页 >  
搜索关键字:number of islands    ( 27069个结果
erlang自定义数据类型
Erlang系统自带的基础数据类型有:atom、tuple、list、binary、pid、float、number、port、reference、record。用户可以通过通过命令type来自定义数据类型,实现方法:-type device() :: atom() | pid().-type pr...
分类:其他好文   时间:2014-07-11 23:26:47    阅读次数:507
定时器工厂
/** * 定时器工厂 * @param {Number} interval [定时器间隔] * @param {Function} callback [定时执行的方法] * @param {Object} context [定时方法的作用域] * @param {Array} ...
分类:其他好文   时间:2014-07-11 11:17:25    阅读次数:273
oracle游标小试
有时候需要大面积的修改数据,这个时候用循环语句效率不高。而临时表又不能满足点对点修改的时候,游标似一种不错的选择(PS:好像游标也是为循环而生的吧)现在有两张表 t1(ryid number,name nvarchar2(50),salary number,paydate date……)用来存员工每...
分类:数据库   时间:2014-07-11 11:10:08    阅读次数:205
查询EBS中LOV的SQL语句
帮助->关于会话 SID : 507DECLARE l_sid NUMBER := :SID;BEGIN FOR cur_sql IN (SELECT sql_text FROM v$sqltext_with_newlines t WHERE t.address IN (SELECT s.prev_...
分类:数据库   时间:2014-07-11 09:59:01    阅读次数:334
[LeetCode] Combination Sum II
Combination Sum IIGiven a collection of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sum...
分类:其他好文   时间:2014-07-11 08:41:13    阅读次数:156
Matlab 7.1安装及打不开问题解决
一、安装方法 1、解压[MATLAB.V7.1.Windows版本].MATLAB.V7.1.R14.SP3.CD1.iso,双击setup进行安装,输入用户名,单位,找到crack下的PLP number.txt文件夹的PLP序列,复制粘贴。 2、安装过程中选择[MATLAB.V7.1.Windows版本].MATLAB.V7.1.R14.SP3.CD2和[MATLAB....
分类:其他好文   时间:2014-07-10 22:01:24    阅读次数:257
XTU1199:Number Game
题目描写叙述给你一个有N个数的集合S和一个数X,推断是否存在S的一个子集,子集里的数的最小公倍数正好是X。输入第一行是数据组数T。 接下来有多组数据,每组数据包括两行: 第一行有2个数N和X,1#include #include using namespace std;#define ll __in...
分类:其他好文   时间:2014-07-10 15:29:01    阅读次数:176
hdu 3709 Balanced Number (数位dp)
Balanced Number Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65535/65535 K (Java/Others) Total Submission(s): 1871    Accepted Submission(s): 836 Problem Description A balanced...
分类:其他好文   时间:2014-07-09 11:54:01    阅读次数:187
冒泡排序
一、基础版~冒泡排序/* *@authoropxin *@version1.0 *冒泡算法 * */ publicclassBubbleSort { publicstaticvoidmain(String[]args) { int[]number= {36,12,78,51,93,18,88,29,64,45}; inttemp=0; for(inti=0;i<number.length;i++) { for(intj=0;j<number.length-1-i;j++)..
分类:其他好文   时间:2014-07-08 12:11:43    阅读次数:171
HDU-1828-Picture(线段树)
Problem Description A number of rectangular posters, photographs and other pictures of the same shape are pasted on a wall. Their sides are all vertical or horizontal. Each rectangle can be partially...
分类:其他好文   时间:2014-07-08 11:10:23    阅读次数:164
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!