7
votes
4answers
213 views
Random prime number
How do I quickly generate a random prime number, that is for sure 1024 bit long?
1
vote
10answers
192 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 effici …
3
votes
4answers
116 views
Algorithm to generate random order of elements
How to randomize order of approximately 20 elements with lowest complexity? (generating random permutations)
78
votes
29answers
7k 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?
6
votes
9answers
572 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
332 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 re …
0
votes
9answers
362 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 o …
3
votes
4answers
168 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 10 …
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 add …
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 pl …
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 …
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 als …
11
votes
13answers
4k views
Best way to randomize a string array in C#
I was just wondering what is the best way to randomize an array of strings in C#. My array contains about 500 strings and I'd like to create a new Array with the same strings but i …
1
vote
9answers
301 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 ( …
4
votes
11answers
1k views
Probability distribution in Python
I have a bunch of keys that each have an unlikeliness variable. I want to randomly choose one of these keys, yet I want it to be more unlikely for unlikely (key, values) to be chos …
