gpt4 book ai didi

Java 快速创建具有一组可能性的数组的方法

转载 作者:行者123 更新时间:2023-11-29 07:15:08 25 4
gpt4 key购买 nike

创建具有一组可能性的二维数组的快速而简单的方法是什么?

例如,如果数字是 5,我希望数组是:

{{0,1},{0,2},{0,3},{0,4},{1,2},{1,3},{1,4},{2,3},{2,4},{3,4}}

如果数字是6,

{{0,1},{0,2},{0,3},{0,4},{0,5},{1,2},{1,3},{1,4},{1,5},{2,3},{2,4},{2,5},{3,4},{3,5},{4,5}}

提前致谢。

最佳答案

List<int[]> a = new ArrayList<int[]>();
for (int i = 0; i < n; i++) {
for (int j = i + 1; j < n; j++) {
a.add(new int[]{i, j});
}
}
return (int[][])a.toArray(new int[0][0]);

关于Java 快速创建具有一组可能性的数组的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10239047/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com