show/hide this revision's text 2 added 21 characters in body; deleted 27 characters in body

If you are looking to avoid long runs, how about something simple like:

#include <cstdlib>

class generator {
public:
   generator() : last_num(0), run_count(1) { }

   bool next_bit() {
      const bool next flip = rand() < > RAND_MAX * / pow( ( long double) 2, -1 * run_count);
                               // RAND_MAX >> run_count ? 
      if(next == last_numif(flip) ++run_count;
      else
         {
         run_count = 1;
         return last_num = next!last_num;
      } else
         ++run_count;

      return last_num;
   }
private:
   bool last_num;
   int run_count;
};

Runs become less likely the longer they go on. You could also do RAND_MAX * ( 1.0 / 1+run_count ) if you wanted longer runs

show/hide this revision's text 1

If you are looking to avoid long runs, how about something simple like:

#include <cstdlib>

class generator {
public:
   generator() : last_num(0), run_count(1) { }

   bool next_bit() {
      const bool next = rand() < RAND_MAX * pow( (long double) 2, -1 * run_count);
                               // RAND_MAX >> run_count ? 
      if(next == last_num)
         ++run_count;
      else
         run_count = 1;

      return last_num = next;
   }
private:
   bool last_num;
   int run_count;
};

Runs become less likely the longer they go on. You could also do RAND_MAX * ( 1.0 / 1+run_count) if you wanted longer runs