猿问
随机改组阵列
随机改组阵列
我需要随机调整以下数组:
int[] solutionArray = {1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2, 1};
这有什么功能吗?
波斯汪
浏览 747
回答 4
4回答
智慧大石
这是一个使用的简单方法ArrayList:List<Integer> solution = new ArrayList<>();for (int i = 1; i <= 6; i++) { solution.add(i);}Collections.shuffle(solution);
0
0
0
随时随地看视频
慕课网APP
相关分类
Java
算法与数据结构
数据结构中,与所使用的计算机无关的数据是什么?
1 回答
学完C语言之后是先学数据结构还是先学JAVA好呢?
1 回答
我要回答