7
votes
4answers
223 views
Random prime number
How do I quickly generate a random prime number, that is for sure 1024 bit long?
1
vote
10answers
200 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?
…
3
votes
4answers
118 views
Algorithm to generate random order of elements
How to randomize order of approximately 20 elements with lowest complexity? (generating random permutations)
6
votes
9answers
586 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
7
votes
11answers
335 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 …
0
votes
9answers
367 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
170 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
292 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
303 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 …
2
votes
4answers
148 views
Comparison method for sorting that shuffles equal elements randomly
Here's a puzzle for you.
I want to change the following comparison method, so that when two items are considered equal, they will be shuffled randomly.
myList.Sort( (x, y) => …
1
vote
5answers
477 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
3answers
178 views
Adjust algorithm for generating random strength values
A few days ago, you helped me to find out an algorithm for generating random strength values in an online game (thx especially John Rasch).
function getRandomStrength($quality) {
$rand = …
5
votes
3answers
254 views
Efficient algorithm to randomly select items with frequency
Given an array of n word-frequency pairs:
[ (w0, f0), (w1, f1), ..., (wn-1, fn-1) ]
where wi is a word, fi is an integer frequencey, and the sum of the frequencies ∑fi = m,
I want to use a …
3
votes
5answers
164 views
Implementing shuffle on the celestial jukebox
How would one implement shuffle for the "Celestial Jukebox"?
More precisely, at each time t, return an uniform random number between 0..n(t), such that there are no repeats in the entire sequence, …
1
vote
6answers
140 views
Generating a set of random events at a predefined frequency
I have a set of events that must occur randomly, but in a predefined frequency. i.e over a course of (totally) infinite events, event A should have occured 10% of the times, event B should have …
