Skip to content

Instantly share code, notes, and snippets.

@rzwitserloot
Created January 17, 2013 02:42
Show Gist options
  • Save rzwitserloot/4553094 to your computer and use it in GitHub Desktop.
Save rzwitserloot/4553094 to your computer and use it in GitHub Desktop.
public int nextInt(int n) {
if (n <= 0)
throw new IllegalArgumentException("n must be positive");
if ((n & -n) == n) // i.e., n is a power of 2
return (int)((n * (long)next(31)) >> 31);
int bits, val;
do {
bits = next(31);
val = bits % n;
} while (bits - val + (n-1) < 0);
return val;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment