Top "Random-seed" questions

A random-seed is used to initialize a pseudo-random number generator in many programming languages.

Is there a way to generate a seed out of a sequence of numbers?

For example if java produces the pseudorandom sequence: 9 3 2 5 6 by using 23 as a seed, how can I do the inverse? i.…

java random random-seed
Seeding rand() for a C++ class

I am working on a C++ class that uses a rand() in the constructor. I would really like for this …

c++ class random static-variables random-seed