Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to get random numbers between 0 and 100. But i want them to be unique, not repeat in sequence. For example if i aget 5 number. They must be 82,12,53,64,32 not 82,12,53,12,32.

Random rand = new Random();
selected = rand.nextInt(100);

I used this but this generates same numbers in a sequence.

share|improve this question
1  
You could create a random permutation of the range 1..100 (there are famous algorithms for that), but stop after you determined the first n elements. – Kerrek SB Nov 13 '11 at 23:44

5 Answers

up vote 4 down vote accepted
  1. Create an array of 100 numbers, then randomize their order.
  2. Devise a pseudo-random number generator that has a range of 100.
  3. Create a boolean array of 100 elements, then set an element true when you pick that number. When you pick the next number check against the array and try again if the array element is set. (You can make an easy-to-clear boolean array with an array of long where you shift and mask to access individual bits.)
share|improve this answer
+1 for the alternate approach; pick() is an example. – trashgod Nov 13 '11 at 23:55
  • Write the numbers sequentially in a list structure.
  • Shuffle it.
  • Take the first 'n'.

And as Mark pointed out, use only a single Random instance.

share|improve this answer
1  
+1 for pointing out single random instance and answering the question. :) – Mark Byers Nov 13 '11 at 23:48

Use Collections.shuffle() on all 100 numbers and select the first five, as shown here.

share|improve this answer

This will work to generate unique random numbers................

import java.util.HashSet;
import java.util.Random;

public class RandomExample {

    public static void main(String[] args) {
        Random rand = new Random();
        int e;
        int i;
        int g = 10;
        HashSet<Integer> randomNumbers = new HashSet<Integer>();

        for (i = 0; i < g; i++) {
            e = rand.nextInt(20);
            randomNumbers.add(e);
            if (randomNumbers.size() <= 10) {
                if (randomNumbers.size() == 10) {
                    g = 10;
                }
                g++;
                randomNumbers.add(e);
            }
        }
        System.out.println("Ten Unique random numbers from 1 to 20 are  : " + randomNumbers);
    }
}
share|improve this answer

I re-factored Anand's answer to make use not only of the unique properties of a Set but also use the boolean false returned by the set.add() when an add to the set fails.

import java.util.HashSet;
import java.util.Random;
import java.util.Set;

public class randomUniqueNumberGenerator {

    public static final int SET_SIZE_REQUIRED = 10;
    public static final int NUMBER_RANGE = 100;

    public static void main(String[] args) {
        Random random = new Random();

        Set set = new HashSet<Integer>(SET_SIZE_REQUIRED);

        while(set.size()< SET_SIZE_REQUIRED) {
            while (set.add(random.nextInt(NUMBER_RANGE)) != true)
                ;
        }
        assert set.size() == SET_SIZE_REQUIRED;
        System.out.println(set);
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.