![]() |
VOOZH | about |
std::mt19937(since C++11) class is a very efficient pseudo-random number generator and is defined in a random header file. It produces 32-bit pseudo-random numbers using the well-known and popular algorithm named Mersenne twister algorithm. std::mt19937 class is basically a type of std::mersenne_twister_engine class.
typedef mersenne_twister_engine<uint_fast32_t, 32,624,397,31,0x9908b0df,11,0xffffffff,7,0x9d2c5680,15,0xefc60000,18,1812433253> mt19937;
Syntax :
mt19937 mt1(seed_value);
Here mt1 is an instance of the mt19937 class and it takes a seed value to generate an entire sequence.
mt19937 stands for mersenne twister with a long period of 219937 - 1 which means mt19937 produces a sequence of 32-bit integers that only repeats itself after 219937 - 1 number have been generated.
The std::mt19937 does two things -
Below is the example to demonstrate the similarities:
3529725061
Being a type of std::mersenne_twister_engine class it has the same member functions which mersenne_twister_engine does. Here is the list of some important member functions -
1. (constructor): constructs the mt19937 object. It takes either a seed value of result type or a seed sequence object(Similar to srand() function).
Example :
3529725061
2. min(): returns the minimum value operator() can return (which is zero).
Example:
the minimum integer it can generate is 0
3. max(): returns maximum value operator() can return ( which is 232 - 1 = 4294967295 )
Example :
mt19937 can generate random numbers upto 4294967295
4. seed(): reinitializes the seed value of the object either by taking a seed value of result type or by taking a seed sequence object.
Example :
some random numbers generated by mt19937 are: 3334444225 240363925 3350157104 146869560 639267854
5. operator(): it generates pseudo-random integers.(similar to rand() function).
Example:
3529725061 3019704141 2006641117 725527349 3631905871
There are also non-member functions overloaded to work with std::mt19937 object. These are -
Here is a simple example to generate a pseudo-random number by taking a seed value from the user -
Using operator<<() and operator>>() :
Example :
enter a integer to begin a random number 3499211612 is generated
Although the rand() function can be used in a small range, it is inefficient for generating real-world like random numbers. A careful person can observe the repetitions of the random numbers generated by rand() which is very risky. Whereas std::mt19937 has the following advantages -
2342776460 1235064505