如何随机生成数组中的数字,每个数字都是唯一的

时间:2022-06-04 20:30:57

I hav a numeric array,which contains 20 elements.I am displaying the numbers randomly for a blackberry application,bt i want dat all d numbers generated should b unique.It should b randomly generated,bt it has b unique until all the elemnts in the array is exhausted.I am giving the piece of code here,if anyone can help me out,i will b extremely grateful.

我有一个数字数组,其中包含20个元素。我正在为黑莓应用程序随机显示数字,但我希望数据生成的所有数字应该是唯一的。它应该随机生成,但它有b唯一直到所有的元素都在数组已经用尽了。我在这里给出了一段代码,如果有人能帮助我,我将非常感激。

static int quesNum[] = new int[20];
static int quesCount = -1;

private static void initialize(){

    Random rgen = new Random();  // Random number generator

    //--- Initialize the array 
    for (int i=0; i<quesNum.length; i++) {
        quesNum[i] = i;
    }

    //--- Shuffle by exchanging each element randomly
    for (int i=0; i< quesNum.length; i++) {
        int randomPosition = rgen.nextInt(quesNum.length);

        int temp = quesNum[i];

        quesNum[i] = quesNum[randomPosition];

        quesNum[randomPosition] = temp;

    }
}

/*Changed the code to get a unique random number

*/
public static int getQuestionNumber() {
    quesCount++;
    if(quesCount < quesNum.length){
        return quesNum[quesCount];
     }
    else{ 
       initialize();
       quesCount = -1;
       return getQuestionNumber();
    }
}

4 个解决方案

#1


3  

Shuffle first, then iterate:

首先洗牌,然后迭代:

Collections.shuffle(listOfValues);
for(Integer val : listOfValues) {
  // give it to user
}

UPDATE

Some wording of OP makes me think Collections.shuffle() is not supported on Blackberry. Then advise is to copy the code of Collections.shuffle(List,Random) into the application.

OP的一些措辞让我觉得Blackberry不支持Collections.shuffle()。然后建议将Collections.shuffle(List,Random)的代码复制到应用程序中。

#2


2  

What you're describing is a perfect application for just shuffling the array.

你所描述的是一个完美的应用程序,只是改组数组。

#3


0  

int len = 20;
Integer[] arr = new Integer[len];
for(int i =0;i<len;i++){
    arr[i] = Integer.valueOf(i+1);
}
Collections.shuffle(Arrays.asList(arr));

Now the array is shuffled and you can iterate over it.

现在数组被洗牌,你可以迭代它。

#4


-1  

You can use an ArrayList instead of the Array and delete each generated number.

您可以使用ArrayList而不是Array,并删除每个生成的数字。

#1


3  

Shuffle first, then iterate:

首先洗牌,然后迭代:

Collections.shuffle(listOfValues);
for(Integer val : listOfValues) {
  // give it to user
}

UPDATE

Some wording of OP makes me think Collections.shuffle() is not supported on Blackberry. Then advise is to copy the code of Collections.shuffle(List,Random) into the application.

OP的一些措辞让我觉得Blackberry不支持Collections.shuffle()。然后建议将Collections.shuffle(List,Random)的代码复制到应用程序中。

#2


2  

What you're describing is a perfect application for just shuffling the array.

你所描述的是一个完美的应用程序,只是改组数组。

#3


0  

int len = 20;
Integer[] arr = new Integer[len];
for(int i =0;i<len;i++){
    arr[i] = Integer.valueOf(i+1);
}
Collections.shuffle(Arrays.asList(arr));

Now the array is shuffled and you can iterate over it.

现在数组被洗牌,你可以迭代它。

#4


-1  

You can use an ArrayList instead of the Array and delete each generated number.

您可以使用ArrayList而不是Array,并删除每个生成的数字。