Is there a function or will I have to use a third party library?
|
|
|||||||||
|
|
|
|
||||
|
|
|
The
|
||
|
|
|
|
If you need better quality pseudo random numbers than what |
||
|
|
|
Well, STL is C++, not C, so I don't know what you want. If you want C, however, there is the
These are both part of ANSI C. There is also the
But as far as I can tell, |
||
|
|
|
Have a look at ISAAC (Indirection, Shift, Accumulate, Add, and Count). Its uniformly distributed and has an average cycle length of 2^8295. |
||
|
|
|
|
You want to use |
||||||||||||||
|
|
|
STL doesn't exist for C. You have to call The difference is that |
||||||||||||
|
|
|
Is there a FAQ entry for this question? It seems to be a Question that gets Asked very Frequently. I see a couple just from the past few hours. FWIW, the answer is that yes, there is a stdlib call "rand"; this function is tuned primarily for speed and distribution, not for unpredictability. Almost all built-in random functions for various languages and frameworks use this function by default. There are also "cryptographic" random number generators that are much less predictable, but run much slower. These should be used in any sort of security-related application. |
||
|
|
