Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Returning a random even number

Tags:

java

I have the following methods. The method rnd, returns a single random integer between two bounds:

  /* Create next batch of 55 random numbers */
  void advance_random (){
int j1;
double new_random;
for(j1=0; j1<24; j1++){
  new_random = oldrand[j1]-oldrand[j1+31];
  if(new_random<0.0){
    new_random = new_random+1.0;
  }
  oldrand[j1] = new_random;
}
for(j1=24; j1<55; j1++){
  new_random = oldrand[j1]-oldrand[j1-24];
  if(new_random<0.0){
    new_random = new_random+1.0;
  }
  oldrand[j1] = new_random;
}
 } //advance_ramdom

  /* Fetch a single random number between 0.0 and 1.0 */
  double randomperc(){
jrand++;
if(jrand>=55){
  jrand = 1;
  advance_random();
}
return((double)oldrand[jrand]);
  } //randomPerc

  /* Fetch a single random integer between low and high including the bounds */
  synchronized int rnd (int low, int high){
int res;
if (low >= high){
  res = low;
} else {
  res = low + (int)(randomperc()*(high-low+1));
  if (res > high){
    res = high;
  }
}
return (res);
  } // rnd

How do I modify this so that the number returned mod2 =0?

Thanks

like image 593
Labra Avatar asked Dec 05 '22 21:12

Labra


2 Answers

if you can get a random number in range [a, b] then all you have to do is get a random number in the range [(a+1)/2, b/2] and multiply it by 2 to get a random even number in range [a, b]

like image 67
Armen Tsirunyan Avatar answered Dec 25 '22 07:12

Armen Tsirunyan


Use a bit-mask to force the least-significant bit to be zero:

x = x & ~1;
like image 38
Oliver Charlesworth Avatar answered Dec 25 '22 07:12

Oliver Charlesworth