5

基本上,假设我有一个可以容纳 10 个数字的 int 数组。这意味着我可以在每个索引中存储 0-9(每个数字只能存储一次)。

如果我运行下面的代码:

int[] num = new int[10];
for(int i=0;i<10;i++){
    num[i]=i;
}

我的数组看起来像这样:

[0],[1],.....,[8],[9]

但是每次运行代码时如何随机分配数字?例如,我希望数组看起来像:

[8],[1],[0].....[6],[3]
4

2 回答 2

10

将其设为 aList<Integer>而不是数组,并使用 Collections.shuffle() 对其进行随机播放。您可以在改组后从列表中构建 int[]。

如果您真的想直接进行随机播放,请搜索“Fisher-Yates Shuffle”。

下面是一个使用 List 技术的例子:

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

public class Test {
  public static void main(String args[]) {
    List<Integer> dataList = new ArrayList<Integer>();
    for (int i = 0; i < 10; i++) {
      dataList.add(i);
    }
    Collections.shuffle(dataList);
    int[] num = new int[dataList.size()];
    for (int i = 0; i < dataList.size(); i++) {
      num[i] = dataList.get(i);
    }

    for (int i = 0; i < num.length; i++) {
      System.out.println(num[i]);
    }
  }
}
于 2013-03-04T07:18:15.670 回答
1

Collections 类有一个有效的洗牌方法:

private static Random random;

/**
 * Code from method java.util.Collections.shuffle();
 */
public static void shuffle(int[] array) {
    if (random == null) random = new Random();
    int count = array.length;
    for (int i = count; i > 1; i--) {
        swap(array, i - 1, random.nextInt(i));
    }
}

private static void swap(int[] array, int i, int j) {
    int temp = array[i];
    array[i] = array[j];
    array[j] = temp;
}
于 2013-10-12T10:39:10.277 回答