up vote 0 down vote favorite
share [g+] share [fb]

I would like to generate a random number less than 50, but once that number has been generated I would like it so that it cannot be generated again.

Thanks for the help!

link|improve this question
5  
You can only do that 50 times :-) – ChssPly76 Aug 2 '09 at 4:30
Strictly speaking, this is not a random number. Rather it is a random permutation of the numbers in the range 1-49 (or 0-49). – Stephen C Aug 2 '09 at 5:05
feedback

3 Answers

Please see: Fisher–Yates shuffle:

public static void shuffle (int[] array) 
{
    Random rng = new Random();       // i.e., java.util.Random.
    int n = array.length;            // The number of items left to shuffle (loop invariant).
    while (n > 1) 
    {
        n--;                         // n is now the last pertinent index
        int k = rng.nextInt(n + 1);  // 0 <= k <= n.
        int tmp = array[k];
        array[k] = array[n];
        array[n] = tmp;
    }
}
link|improve this answer
1  
BTW, this question has been asked several times before... – Mitch Wheat Aug 2 '09 at 4:34
Thanks, I've been playing with it for the past 15 minutes but cannot seem to figure out how to call it. I'm a bit new with vb. – Craig Aug 2 '09 at 5:11
feedback

Put the numbers 1-49 in a sortable collection, then sort it in random order; pop each one out of the collection as needed.

link|improve this answer
1  
Erm. "Sort in random order" is a contradiction in terms. – Stephen C Aug 2 '09 at 5:04
True, my bad :-). Re-order at random? – onupdatecascade Aug 2 '09 at 5:13
1  
The words your looking for are: "Place the numbers 1 through 50 in a collection, shuffle, then pop each out one at a time." – GMan Aug 2 '09 at 5:25
1  
Bingo. (Pun intended.) +1 for Mitch for the real answer – onupdatecascade Aug 2 '09 at 5:45
feedback

Seeing as the question was tagged VB/VB.Net... this is a VB implementation of Mitch's answer.

Public Class Utils

   Public Shared Sub ShuffleArray(ByVal items() As Integer)

      Dim ptr As Integer
      Dim alt As Integer
      Dim tmp As Integer
      Dim rnd As New Random()

      ptr = items.Length

      Do While ptr > 1
         ptr -= 1
         alt = rnd.Next(ptr - 1)
         tmp = items(alt)
         items(alt) = items(ptr)
         items(ptr) = tmp
      Loop

   End Sub

End Class
link|improve this answer
feedback

Your Answer

 
or
required, but never shown