0

我想从一个间隔生成随机的唯一 int 数字,但应用程序冻结了(无限循环)。

int[] ids = new int[200];
for(int i = 0; i < ids.length; i++){
   int temp = getUnique(ids);
   ids[i] = temp;
}

private int getUnique(int[] ids){
   while(true){
      int iRand = random(0, ids.length);
      if( unique( ids, iRand ) ) return iRand;
   }
}

private boolean unique(int[] arr, int i){
    for(int k : arr){
        if(k == i) return false;
    }

    return true;
}

private int random(int Min, int Max){
   return Min + (int)(Math.random() * ((Max - Min) + 1));
}

我想要一个随机排序的 0 - 200 之间的整数数组。我不知道为什么,但应用程序冻结了。为什么?问题出在哪里?

4

2 回答 2

6

考虑使用Collections.shuffle(...)随机化列表。

例如:

Integer[] ids = getArrayOfNumbers();
List<Integer> idList = Arrays.asList(ids);
Collections.shuffle(idList);
ids = idList.toArray(ids);
于 2013-02-14T00:22:26.153 回答
1

我建议你将你想要的数字插入到排序的数组中,然后将它们打乱,因为生成一个随机数然后检查它是否唯一可能需要很长时间..

于 2013-02-14T00:24:31.693 回答