0
votes
13answers
336 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 …
81
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
298 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
269 views
Random prime number
How do I quickly generate a random prime number, that is for sure 1024 bit long?
1
vote
10answers
244 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
9answers
722 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
3
votes
4answers
140 views
Algorithm to generate random order of elements
How to randomize order of approximately 20 elements with lowest complexity? (generating random permutations)
7
votes
11answers
349 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 …
8
votes
8answers
330 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
403 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 …
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 …
17
votes
7answers
2k views
Unique random numbers in O(1)?
The problem is this: I'd like to generate unique random numbers between 0 and 1000 that never repeat (I.E. 6 doesn't come out twice), but that doesn't resort to something like an O(N) search of …
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.
1
vote
5answers
504 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 …
