Created
          January 17, 2013 02:42 
        
      - 
      
- 
        Save rzwitserloot/4553094 to your computer and use it in GitHub Desktop. 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 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