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.

link|improve this question

71% accept rate
4  
"I don't want to use any inbuilt classes or functions." Why not? And see here for how a RNG works. You really want to rely on framework functionality here. – CodeCaster Sep 24 '11 at 16:28
feedback

3 Answers

up vote 4 down vote accepted

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.

link|improve this answer
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.

link|improve this answer
Is the BCL random support actually implemented in .Net i.e MSIL? I would suspect it is done natively. – chibacity Sep 24 '11 at 16:47
Yes it is implemented in .Net. They're generating 1 array (for each Random object) with around 50+ elements and fill it with something similar to MWC I think and then returning differences between 2 fields in this seed-array while also updating it's fields, so it's pretty fast (just few accesses to managed array). – Ravadre Sep 24 '11 at 18:06
1  
@chibacity "The current implementation of the Random class is based on a modified version of Donald E. Knuth's subtractive random number generator algorithm." and RNGCryptoServiceProvider is using the native CryptGenRandom function. – ordag Sep 24 '11 at 18:40
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#:

public class RNG
{
    // Seeds
    static uint m_w = 362436069;    /* must not be zero */
    static uint m_z = 521288629;    /* must not be zero */

    public int NextRandom()
    {
        m_z = 36969 * (m_z & 65535) + (m_z >> 16);
        m_w = 18000 * (m_w & 65535) + (m_w >> 16);
        return (int)((m_z << 16) + m_w);
    }
}

For details on MWC, see http://www.bobwheeler.com/statistics/Password/MarsagliaPost.txt

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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