11
votes
24answers
2k views
What is a good random number generator for a game?
What is a good random number generator to use for a game in C++?
My considerations are:
Lots of random numbers are needed, so speed is good.
Players will always complain about random numbers, but …
5
votes
7answers
2k views
C++ random float
How do I generate random floats in C++?
I thought I could take the integer rand and divide it by something, would that be adequate enough?
4
votes
11answers
368 views
Better seeds than time(0)?
I understand that time(0) is commonly using for seeding random number generators and that it only becomes a problem when the program is being run more than once per second. I'm wondering what are some …
4
votes
4answers
319 views
Find out what a random number generator was seeded with in C++
I've got an unmanaged c++ console application in which I'm using srand() and rand(). I don't need this to solve a particular problem, but was curious: is the original seed passed to srand() stored …
4
votes
11answers
1k views
Generate Random numbers uniformly over entire range
I need to generate random numbers with in specified interval [max,min]
Also the random numbers should be uniformly distributed over interval, not located to particular point
Currenly I am generating …
4
votes
7answers
1k views
Random element in a map
what is a good way to select a random element from a map? C++. It is my understanding that maps don't have random access iterators. The key is a long long and the map is sparsely populated.
3
votes
5answers
294 views
Statistical mathematics issues
Hello,
I'm developing a Texas Hold 'em hand-range equity evaluator, which evaluates hand-distributions with Monte Carlo -simulation. I've faced two annoying problems which behaviors I cannot give any …
3
votes
4answers
282 views
Issues with seeding a pseudo-random number generator more than once?
I've seen quite a few recommendations for not seeding pseudo-random number generators more than once per execution, but never accompanied by a thorough explanation. Of course, it is easy to see why …
3
votes
8answers
275 views
quickest way to generate random bits
What would be the fastest way to generate a large number of (pseudo-)random bits. Each bit must be independent and be zero or one with equal probability. I could obviously do some variation on
…
3
votes
7answers
374 views
C++. Is it possible that a RNG gives different random variable in two different machines using the same seed?
Hi everybody,
I have this long and complex source code that uses a RNG with a fix seed.
This code is a simulator and the parameters of this simulator are the random values given by this RNG.
When I …
3
votes
6answers
2k views
How do I create a random alpha-numeric string in C++?
I'd like to create a random string, consisting of alpha-numeric characters. I want to be able to be specify the length of the string.
How do I do this in C++?
3
votes
8answers
1k views
Recommended way to initialize srand?
I need a 'good' way to initialize the pseudo-random number generator in C++. I've found an article that states:
In order to generate random-like
numbers, srand is usually initialized
to some …
3
votes
14answers
3k views
Open source random number generation algorithm in C++?
I need to generate random numbers in the range 1 - 10000 continuously with out duplication.
Any recommendations?
Description: we are building a new version for our application, which maintains …
2
votes
4answers
167 views
generating random alphabets with some alphabets having a higher frequency of occurence(vc++6.0)
basically i have a function that generates random alphabets .i have done this using the rand() function to generate numbers and them converted them to their corresponding ascii equivalents.
but i want …
2
votes
9answers
680 views
What is the most random function in C++?
I've used
#include<stdlib>
#include<time>
using namespace std;
srand((unsigned)time(0));
int n=(rand()>>8)%4;
but what other random functions are there, or what other function …
