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

Random numbers often have long sequences of 1s and 0s, so I'm not sure I fully understand why you can't use a simple linear congruential generator and shift in or out how ever many bits you need. They're blazing fast, look extremely random to the naked eye, and you can choose coefficients that will yield random integers in whatever positive range you need. If you need 32 "random looking" bits, just generate four random numbers and take the low 8 bits from each.

You don't really need to implement your own at all though, since in most languages the random library already implements one.

If you're determined that you want a particular density of 1s, though, you could always start with a number that has the required number of 1s set

int a = 0x00FF;

then use a bit twiddling hack to implement a bit-level shuffle of the bits in that number.

show/hide this revision's text 2 added 446 characters in body

Random numbers often have long sequences of 1s and 0s, so I'm not sure I would fully understand why you can't use a simple linear congruential generator and shift in or out how ever many bits you need. They're blazing fast, look extremely random to the naked eye, and you can choose coefficients that will yield random integers in whatever positive range you need.

You don't really need to implement your own at all though, since in most languages the random library already implements one.

If you're determined that you want a particular density of 1s, though, you could always start with a number that has the required number of 1s set

int a = 0x00FF;

then use a bit twiddling hack to implement a bit-level shuffle of the bits in that number.

show/hide this revision's text 1

I would use a simple linear congruential generator and shift in or out how ever many bits you need. They're blazing fast, look extremely random to the naked eye, and you can choose coefficients that will yield random integers in whatever positive range you need.

You don't really need to implement your own at all though, since in most languages the random library already implements one.