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

So here is one of the simplest things one might do:

Random rng = new Random();
int a = rng.nextInt(10);
int b = rng.nextInt(10);

So far so good. But we want to avoid having equal a and b, so naturally we do:

Random rng = new Random();
int a = rng.nextInt(10);
int b = rng.nextInt(10);
while (a == b){
  b = rng.nextInt(10);
}

However — to my very very very big surprise — the while loop never exits. Never.

I understand that, in theory, with random numbers you could have an infinite sequence of one number. But I've had this code running for 10 minutes now and it hasn't exited the loop.

What's up with this? I'm running JDK 6 Update 16 on the latest Linux Mint.

share|improve this question
1  
Weird. Did you try to initialize Random with a seed? Random r = new Random( 19580427 ); – b.roth Nov 28 '09 at 17:06
2  
Works as expected for me. Java 1.6 u17. Post a complete class, including imports, that reproduces the problem. – erickson Nov 28 '09 at 17:07
That basiacally is the complete code. It just returns a and b as a char array after that. The only thing that could be causing this might be, that the method is static. Wait, I'll try. – Marc Müller Nov 28 '09 at 17:10
1  
Just a minor notice: I'd change the line int b = rng.nextInt(10) to int b; and turn the while(a==b) {} into do {} while (a!=b) so you have to call b = rng.nextInt(10) just once - won't change anything, but is "better" code. – schnaader Nov 28 '09 at 17:15
1  
Also, you should never reduce your entropy pool by kicking out random numbers you don’t like. This way you will end with less entropy. The same number twice in a row is perfectly valid and random. Just use it as is. – Bombe Nov 28 '09 at 19:25
show 3 more comments

4 Answers

up vote 7 down vote accepted
	Random rng = new Random();
	int a = rng.nextInt(10);
	int b = rng.nextInt(9);
	if (b >= a) ++b;

Problem solved!

share|improve this answer
should'nt it be if (b == a) ? – Carlos Heuberger Nov 28 '09 at 17:36
No. If you did that you'd get a+1 twice as often as the other numbers. – Mark Byers Nov 28 '09 at 18:40
No, because then you lose the possibility of picking 9, and you double the probability of a+1. We are removing a from the set of possibilities for b by shifting [a+1,10) down 1, to remove the hole left by a. – Thanatos Nov 28 '09 at 18:41
Also, +1 for a deterministic way of doing this. – Thanatos Nov 28 '09 at 18:42
1  
Carlos, that will make b's value equal (a+1) twice as likely as other values. An even quicker one probably is: if(b==a) b=9; – irreputable Nov 28 '09 at 18:44
show 1 more comment

I don't know why this would be happening -- I tried it in 1.6.0_16 for Windows and had no problems. Here's the complete class:

import java.util.Random;
public class Test {
    public static void main(String[] args) {
        Random rng = new Random();
        int a = rng.nextInt(10);
        int b = rng.nextInt(10);
        while (a == b){
            System.out.println(b + " is equal to " + a + "!");
            b = rng.nextInt(10);
        }
        System.out.println(a);
        System.out.println(b);
    }
}

Sometimes I'll get the "a is equal to b!" output once or twice in a row, but then it works after that.

share|improve this answer
1  
So the fail is in whatever thing Linux Mint is – Rocket Surgeon Nov 28 '09 at 17:13
1  
RocketSurgeon: Look at the code for java.util.Random(). I severely doubt that there are any OS dependencies that might change the result. – Јοеу Nov 28 '09 at 19:36
+1 - Based on this evidence, it looks like the "Linux Mint" packages for Java are broken and should not be trusted. – Stephen C Nov 29 '09 at 4:22

Practically, it should work. Something wrong with your environment.

However, theoretically, we can't predict what random is; it is legit if a random generator gives you the same number one million times in a row. To have a deterministic code, you can do this:

int a = rng.nextInt(10);
int b = rng.nextInt( 9);
b = (a+b+1)%10;
share|improve this answer

You might try setting the seed to something else to see if that helps.

rng.setSeed(123456);

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.