制作给定长度数组的最有效方法是什么,每个元素都包含其下标?
我的虚拟级代码的可能描述:
/**
* The IndGen function returns an integer array with the specified dimensions.
*
* Each element of the returned integer array is set to the value of its
* one-dimensional subscript.
*
* @see Modeled on IDL's INDGEN function:
* http://idlastro.gsfc.nasa.gov/idl_html_help/INDGEN.html
*
* @params size
* @return int[size], each element set to value of its subscript
* @author you
*
* */
public int[] IndGen(int size) {
int[] result = new int[size];
for (int i = 0; i < size; i++) result[i] = i;
return result;
}
欢迎其他提示,例如文档样式。
编辑
我在其他地方读过for
循环与其他方法相比效率低下,例如在Copying an Array中:
使用克隆:93 毫秒
使用 System.arraycopy:110 毫秒
使用 Arrays.copyOf:187 毫秒
使用 for 循环:422 毫秒
我对这个网站上一些问题的富有想象力的回答印象深刻,例如,显示从 1 到 100 的数字,没有循环或条件。这是一个可能建议一些方法的答案:
public class To100 {
public static void main(String[] args) {
String set = new java.util.BitSet() {{ set(1, 100+1); }}.toString();
System.out.append(set, 1, set.length()-1);
}
}
如果您无法解决这个具有挑战性的问题,则无需发泄:只需继续下一个未回答的问题,您可以处理的问题。