Balanced NumberTime Limit:3000MSMemory Limit:0KB64bit IO Format:%lld & %lluDescriptionA balanced number is a non-negative integer that can be balanced...
分类:
其他好文 时间:
2014-07-26 00:11:36
阅读次数:
345
1:基础数据与封装类型之间的转型
A:基础数据类型--->封装类型(对象类型)
Boolean boolean_1 = new Boolean(true);
byte ---->Byte
short---->Short
char---->Character
int--->Integer
long-->Long
float-->Float
double-->Double...
分类:
其他好文 时间:
2014-07-25 11:24:51
阅读次数:
210
Merge Sorted ArrayGiven two sorted integer arrays A and B, merge B into A as one sorted array.Note:You may assume that A has enough space (size that i...
分类:
其他好文 时间:
2014-07-25 02:34:44
阅读次数:
162
Farey SequenceTime Limit:1000MSMemory Limit:65536KDescriptionThe Farey Sequence Fn for any integer n with n >= 2 is the set of irreducible rational nu...
分类:
其他好文 时间:
2014-07-24 22:53:03
阅读次数:
211
EditText继承关系:View-->TextView-->EditTextEditText的属性很多,这里介绍几个:android:hint="请输入数字!" //设置显示在空间上的提示信息android:numeric="integer" //设置只能输入整数,如果是小数则是:decima.....
分类:
其他好文 时间:
2014-07-24 22:14:12
阅读次数:
202
B. Uncle Tom's Inherited Land*Time Limit: 1000msMemory Limit: 32768KB64-bit integer IO format:%I64d Java class name:MainSpecial JudgeYour old uncle To...
分类:
其他好文 时间:
2014-07-24 21:35:52
阅读次数:
343
1.普通方式建立主表create table tbl_partition( id integer, name varchar(20), gender boolean, join_date date, dept char(4))2.创建分区表.(注意加上约束和继承)cre...
分类:
数据库 时间:
2014-07-24 17:19:55
阅读次数:
324
Divide two integers without using multiplication, division and mod operator.题解:要求不用乘除和取模运算实现两个数的除法。那么用加减法是很自然的选择。不过如果一次只从被除数中剪掉一个除数会TLE。所以我们借助移位运算,依次从...
分类:
其他好文 时间:
2014-07-24 17:09:15
阅读次数:
203
1.Integer转换成int的方法Integer i;int k = i.intValue();即Integer.intValue();2.int转换成Integerint i;Integer it = new Integer(i);3.String转换成int的方法String str = "1...
分类:
编程语言 时间:
2014-07-24 10:11:33
阅读次数:
299
总时间限制:1000ms内存限制:65536kB描述Calculate a + b输入Two integer a,,b (0 ≤ a,b ≤ 10)输出Output a + b样例输入1 2样例输出3提示Q: Where are the input and the output?A: Your pr...
分类:
其他好文 时间:
2014-07-24 10:07:23
阅读次数:
287