0
votes
13answers
328 views
Better random algorithm?
I'm making a game in c++ and it involves filling tiles with random booleans (either yes or no) whether it is yes or no is decided by rand() % 1. It doesnt feel very random. I'm using srand with ctime …
80
votes
31answers
8k views
Given a function which produces a random integer in the range 1 to 5, write a function which produces a random integer in the range 1 to 7
what is simple solution
what is effective solution to less minimum memory and(or) cpu speed?
3
votes
5answers
297 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 …
1
vote
2answers
108 views
Fast random selection algorithm
Given an array of true/false values, what is the most efficient algorithm to select an index with a true value at random.
A sketch simple algorithm is
a <- the array
c <- 0
for i in a:
…
7
votes
4answers
268 views
Random prime number
How do I quickly generate a random prime number, that is for sure 1024 bit long?
1
vote
10answers
243 views
Fastest way to pick a random element from a list that fulfills certain condition
I need to pick a random element from a list, that fulfills certain condition. The approach I've been using works, but I'm sure is not every efficient. What would be the most efficient way to do it?
…
5
votes
17answers
3k views
Picking a random element from a set
How do I pick a random element from a set?
I'm particularly interested in picking a random element from a
HashSet or a LinkedHashSet, in Java.
Solutions for other languages are also welcome.
3
votes
4answers
137 views
Algorithm to generate random order of elements
How to randomize order of approximately 20 elements with lowest complexity? (generating random permutations)
5
votes
9answers
716 views
Unique random numbers in an integer array in the C programming language.
How do I fill an integer array with unique values (no duplicates) in C?
int vektor[10];
for (i = 0; i < 10; i++) {
vektor[i] = rand() % 100 + 1;
}
//No uniqueness here
1
vote
9answers
401 views
Non-repeating pseudo random number stream with ‘clumping’
I'm looking for a method to generate a pseudorandom stream with a somewhat odd property - I want clumps of nearby numbers.
The tricky part is, I can only keep a limited amount of state no matter …
7
votes
11answers
348 views
A Good and SIMPLE Measure of Randomness
What is the best algorithm to take a long sequence of integers (say 100,000 of them) and return a measurement of how random the sequence is?
The function should return a single result, say 0 if the …
1
vote
5answers
501 views
What common algorithms are used for C’s rand()?
I understand that the C specification does not give any specification about the specific implementation of rand(). What different algorithms are commonly used on different major platforms? How do they …
3
votes
4answers
190 views
random and unique subsets generation
Lets say we have numbers from 1 to 25 and we have to choose sets of 15 numbers.
The possible sets are, if i'm right 3268760.
Of those 3268760 options, you have to generate say 100000
What would be …
8
votes
8answers
325 views
How can I generate pseudo-random “readable” strings in Java?
Generating a truly random string of a given length is a fairly straightforward (and already-well-covered) task.
However; I'd like to generate a "pseudo" random string with the additional constraint …
1
vote
9answers
322 views
what is the most efficient way to pick a random card from a deck when some cards are unusable?
I have an array which tells whether a card is in use:
int used[52];
This is a terrible way to pick a random card if I have many used cards:
do {
card = rand() % 52;
} while (used[card]);
since …
