vote up 1 vote down star

I understand that the C specification does not give any specification about the specific implementation of rand(). What different algorithms are commonly used on different major platforms? How do they differ?

flag
The main comment is that rand() is only pseudo-random, and often not even a very good pseudo-random generator. The C standard suggests a possible implementation, and many an implementation uses it. As others have noted, there are lots of others. Just ensure that you do not use the basic random functions for situations where you need cryptographic randomness. – Jonathan Leffler Jun 23 at 0:34

5 Answers

vote up 7 vote down check

See this article: http://en.wikipedia.org/wiki/List_of_random_number_generators

This is the source code of glibc's rand(): http://qa.coreboot.org/docs/libpayload/rand_8c-source.html

As you can see, it's a simple multiply with an addition and a shift. The values are carefully chosen to make sure that you get no repeat of the output for RAND_MAX iterations.

link|flag
That's it? Surprisingly simple. Thanks muchly. – Azrael Jun 22 at 10:04
Yes, that's it, most general purpose PNRGs are surprisingly simple to implement. If you're looking for something more complex try the Mersenne Twister. – Jasper Bekkers Jun 22 at 10:12
Even MT19937 isn't exactly hard to implement. – Johannes Rössel Jun 22 at 10:56
via @Tiemen below: @Aaron I can not comment but RAND_MAX is the highest possible value returned, not the number of iterations before repeating. – Jason Watkins Jun 22 at 21:45
@Jason: Any link for that? I was under the impression that there won't be a repeat for RAND_MAX calls (unless you change the seed, of course) – Aaron Digulla Jun 23 at 20:12
show 2 more comments
vote up 2 vote down

You could use Boost Random library for different random number generators, if you need something specific, or more advanced.

The documentation of Boost Random is here.

link|flag
vote up 0 vote down

@Aaron I can not comment but RAND_MAX is the highest possible value returned, not the number of iterations before repeating.

link|flag
Yes, but I think he qualified his statement in a way that it's mostly true: The values are typically carefully chosen so that you don't get a repeat for (at most) RAND_MAX iterations. Sometimes, the cycles are smaller. IIRC, the rule of thumb is that RAND_MAX is ought to be co-prime with the other constants. – hythlodayr Jun 22 at 22:01
If I recall correctly, r=r*5+1 is such a beast. It cycles through all possible bit combinations, no matter how many bits you choose. – Nosredna Jun 22 at 23:33
vote up 1 vote down

The field of PRNGs (Pseudo Random Number Generators) is quite vast.

First of all you have to understand that without having an external input (usually physical) you can't get a real source of random numbers.. That's why these algorithms are called pseudo random: they usually use a seed to initialize a position in a very long sequence that seems random but it's not random at all.

One of the simplest algorithms is the Linear Congruential Generator (LCG), that has some costraints to guarantee a long sequence and it's not secure at all.

Another funny one (at least for the name) is the Blum Blum Shub Generator (BBS) that is unusual for normal PRNGs because it relies on exponentiation in modulo arithmetic giving a security comparable to other algorithms like RSA and El Gamal in breaking the sequence (also if I'm not sure about the proof of it)

link|flag
vote up 0 vote down

I once wrote a report on CRNGs for a course in Discrete Mathematics. For it, I disassembled rand() in msvcrt.dll:


msvcrt.dll:77C271D8 mov     ecx, [eax+14h]
msvcrt.dll:77C271DB imul    ecx, 343FDh
msvcrt.dll:77C271E1 add     ecx, 269EC3h
msvcrt.dll:77C271E7 mov     [eax+14h], ecx
msvcrt.dll:77C271EA mov     eax, ecx
msvcrt.dll:77C271EC shr     eax, 10h
msvcrt.dll:77C271EF and     eax, 7FFFh

So it's a LCG something like (untested)...


int ms_rand(int& seed)
{
  seed = seed*0x343fd+0x269EC3;  // a=214013, b=2531011
  return (seed >> 0x10) & 0x7FFF;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.