第一种方法:s=i+"";
//会产生两个String对象第二种方法:s=String.valueOf(i);
//直接使用String类的静态方法,只产生一个对象第一种方法:i=Integer.parseInt(s);//直接使用静态方法,不会产生多余的对象,但会抛出异常第二种方法:i=Int...
分类:
编程语言 时间:
2014-04-28 13:40:43
阅读次数:
486
时间限制:10000ms
单点时限:1000ms
内存限制:256MB
Description
Find a pair in an integer array that swapping them would maximally decrease the inversion count of the array. If such a pair exists, retur...
分类:
其他好文 时间:
2014-04-27 17:48:35
阅读次数:
508