3
votes
4answers
94 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
434 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 …
74
votes
28answers
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?
7
votes
11answers
315 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
314 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
155 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
279 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
437 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 …
5
votes
17answers
2k 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 …
16
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 …
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
292 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 ( …
2
votes
4answers
137 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) => …
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 …
3
votes
3answers
173 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) {
…
