I need to be able to write my own pseudo random number generator. no with no libraries. I've been trying but I didn't get any success.
feedback
|
|
It's very difficult to get this right, and very, very easy to write an RNG which looks to produce random numbers but doesn't. If you are seriously interested in this, read Chapter 3 of Knuth's The Art of Computer Programming, otherwise use a library function. | |||||
feedback
|
|
I suggest you have a look at List of pseudo-random number generators, pick one and implement it. | |||
|
feedback
|
|
Some of the simplest pseudo-random generators to implement are Linear Congruential Generators and Blum Blum Shub. Try implementing one of those. | |||
|
feedback
|
|
Well, it depends on what you mean by "write". There's two ways I can interpret your question:
Of the two, I think the first is most likely but if you need to do the 2nd, my suggestion is you don't, there's plenty of existing proven algorithms. The Wikipedia article on random number generators provides a link in its citations to a list of random number generators and of the ones listed I've come across the linear congruential generator the most, mostly because it is super-easy to implement and not half-bad. There are other algorithms though so you ought to do some research. Basically, the formula is as follows:
The three constants are carefully selected, and a typical choice is:
(source for these numbers: Rosettacode: Random number generator) | |||||||
feedback
|
|
There is an excellent, and very short random generator : the XORShift. It passes random generator Diehard tests, and is so concise that I can copy/paste the wikipedia code here!
To generate a seed, just put any values for x, y, z, w, except (0,0,0,0) | |||
|
feedback
|
|
For weak (meaning "somewhat predictable") algorithms, it is common to use the current time (as fine as you can get it) as the seed for your "random" number. For example, in java:
Would be satisfactory. If you are not allowed to call even the system time, have your class start with a seed and increment it every time it's called. Although this will produce the same series of "random" numbers every time your program is run, at least it wouldn't call and library functions. You must try to make the seed produce "random" numbers as best you can. Often truncation is used, for example multiple by a large prime number then divide by another large prime and use the remainder. | ||||
|
feedback
|
|
if your using c++ or c, include time.h then just seed a random number using time. eg:
then when u call: | |||
|
feedback
|