gpt4 book ai didi

java - 在java中将不重复的随机数添加到二维数组的最简单方法

转载 作者:行者123 更新时间:2023-12-01 21:47:26 25 4
gpt4 key购买 nike

我试图找出最简单的添加方法是什么,以仅用不重复的数字填充此二维数组。

我尝试使用带有 boolean 值的方法来在添加值之前检查该值(如果它已经存在),但我无法使其工作。

int[][] x = new int[R][C];

for (int i = 0; i < x.length; i++) {
for (int j = 0; j < x[i].length; j++) {
double z = (Math.random() * ((30 * (j + 1)) - ((30 * j) + 1)) + 1 + ((30 * j) + 1));
card[i][j] = (int) z;
}
}

最佳答案

我想说的最好方法是使用Set数据结构

int row = 2;
int col = 2;
Set<Set<Integer>> rowSet = new HashSet<>();

for (int i = 0; rowSet.size() < row; i++) {
Set<Integer> colSet = new HashSet<>();

for (int j = 0; colSet.size() < col; j++) {
double x = (Math.random() * ((15 * (j + 1)) - ((15 * j) + 1)) + 1 + ((15 * j) + 1));
colSet.add((int) x);
}
rowSet.add(colSet);
}

最后将它们转换为数组

int[][] arr = set.stream()
.map(i->i.stream()
.mapToInt(Integer::intValue)
.toArray())
.toArray(int[][]::new);

关于java - 在java中将不重复的随机数添加到二维数组的最简单方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58779675/

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