show/hide this revision's text 3 added 402 characters in body

This is how I would examine the number:

const int max_repeated_bits = 4;  /* or any other number that you prefer */

int examine_1(unsigned int x) {      
  for (int i=0; i<max_repeated_bits; ++i) x &= (x << 1);
  return x == 0;
}

int examine(unsigned int x) {
  return examine_1(x) && examine_1(~x);
}

Then, just generate a number x, if examine(x) return 0, reject it and try again. The probability to get a 32-bit number with more than 4 bits in a row is about 2/3, so you would need about 3 random generator callse per number. However, If you allow more than 4 bits, it gets better. Say, the probability to get more than 6 bits in a row only about 20%, so you would need only 1.25 calls per number.

show/hide this revision's text 2 deleted 67 characters in body; deleted 20 characters in body; deleted 20 characters in body; deleted 2 characters in body; added 43 characters in body

This is how I would examine the number:

const int max_repeated_bits = 4;  /* or any other number that you prefer */

int examine(unsigned examine_1(unsigned int numberx) {      
  unsigned int x = number;

  for (int i=0; i<max_repeated_bits; ++i) {
    x &= (x << 1);
  }
  if (return x !=0) return = 0;
x = ~number;
  for (}

int i=0; i<max_repeated_bits; ++i) {
    x &= (examine(unsigned int x<< 1);
  }

  ) {
  return x == 0examine_1(x) && examine_1(~x);
}
show/hide this revision's text 1

This is how I would examine the number:

const int max_repeated_bits = 4;

int examine(unsigned int number) {
  unsigned int x = number;

  for (int i=0; i<max_repeated_bits; ++i) {
    x &= (x << 1);
  }
  if (x != 0) return 0;

  x = ~number;
  for (int i=0; i<max_repeated_bits; ++i) {
    x &= (x << 1);
  }

  return x == 0;
}