I was wondering how the Random functions in every programming language works so I want to generate a number by myself i.e. I don't want to use any inbuilt classes or functions.
feedback
|
|
For simplicity and speed, it's hard to beat the Xorshift random number generator. Whether it generates a good distribution is another question. One example in C#: http://www.codeproject.com/KB/cs/fastrandom.aspx Different languages and environments use different random number generators. As others have pointed out, there are lots of ways to generate pseudo-random numbers. See C# Normal Random Number and other similar Stack Overflow questions. | |||
|
feedback
|
|
If you are curious how it works you can start with Wikipedia: Random number generation and List of random number generators. The second link will give you list of few popular algorithms (like Mersenne Twister) that you can implement by yourself. You can also decompile System.Random with .Net Reflector and compare given algorithms with what is implemented natively in .Net Also, Art of Computer Programming by D. Knuth has a chapter on random numbers and their generation. | |||||||||
feedback
|
|
As someone else commented, you really want to rely on framework functionality for this. If this is for academic purposes or out of pure interest, there are a number of RNG algorithms that are easy to implement. One is the multiply-with-carry (MWC) algorithm, which can be easily implemented in C#:
For details on MWC, see http://www.bobwheeler.com/statistics/Password/MarsagliaPost.txt | |||
|
feedback
|