Tagged Questions
226
votes
47answers
34k views
Expand a random range from 1-5 to 1-7
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 a simple solution?
What is an effective solution ...
109
votes
37answers
6k views
Need for predictable random generator
I'm a web-game developer and I got a problem with random numbers. Let's say that a player has 20% chance to get a critical hit with his sword. That means, 1 out of 5 hits should be critical. The ...
49
votes
23answers
3k views
Could a truly random number be generated using pings to psuedo-randomly selected IP addresses?
The question posed came about during a 2nd Year Comp Science lecture while discussing the impossibility of generating numbers in a deterministic computational device.
This was the only suggestion ...
43
votes
8answers
1k views
What distribution do you get from this broken random shuffle?
The famous Fisher-Yates shuffle algorithm can be used to randomly permute an array A of length N:
For k = 1 to N
Pick a random integer j from k to N
Swap A[k] and A[j]
A common mistake that ...
40
votes
3answers
2k views
Data structure for loaded dice?
Suppose that I have an n-sided loaded die where each side k has some probability pk of coming up when I roll it. I'm curious if there is good algorithm for storing this information statically (i.e. ...
40
votes
10answers
6k 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 ...
31
votes
1answer
578 views
What's a good one-pass pseudo-random shuffle? [closed]
The Fisher-Yates shuffle gives a nice algorithm to shuffle an array A of length n in a single pass:
For k = 1 to n
Pick a random integer j from k to n
Swap A[k] and A[j]
After a single pass ...
30
votes
12answers
28k views
Select a random N elements from List<T> in C#
I need a quick algorithm to select a random 5 elements from a generic list. For example, I'd like to get a random 5 elements from a List.
23
votes
10answers
8k views
best way to pick a random subset from a collection?
I have a set of objects in a Vector from which I'd like to select a random subset (e.g. 100 items coming back; pick 5 randomly). In my first (very hasty) pass I did an extremely simple and perhaps ...
23
votes
20answers
31k 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.
23
votes
14answers
16k views
Best way to randomize a string array in C#
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 in a random order.
22
votes
3answers
784 views
What's the benefit of seeding a random number generator with only prime numbers?
While conducting some experiments in Java, my project supervisor reminded me to seed each iteration of the experiment with a different number. He also mentioned that I should use prime numbers for the ...
22
votes
10answers
1k views
An interview question: About Probability
An interview question:
Given a function f(x) that 1/4 times returns 0, 3/4 times returns 1.
Write a function g(x) using f(x) that 1/2 times returns 0, 1/2 times returns 1.
My implementation is:
...
21
votes
5answers
934 views
How can I generate an “unlimited” world?
I would like to create a game with an endless (in reality an extremely large) world in which the player can move about. Whether or not I will ever get around to implement the game is one matter, but I ...
21
votes
24answers
22k views
Create Random Number Sequence with No Repeats
Duplicate:
Unique random numbers in O(1)?
I want an pseudo random number generator that can generate numbers with no repeats in a random order.
For example:
random(10)
might return
5, 9, 1, ...
20
votes
6answers
1k views
Practical Uses of Fractals in Programming
Fractals have always been a bit of a mystery for me.
What practical uses (beyond rendering to beautiful images) are there for fractals in the various programming problem domains? And please, don't ...
20
votes
11answers
5k views
Random points inside a Polygon
I have a 4 side convex Polygon defined by 4 points in 2D, and I want to be able to generate random points inside it.
If it really simplifies the problem, I can limit the polygon to a parallelogram, ...
20
votes
11answers
19k views
Converting a Uniform Distribution to a Normal Distribution
How can I convert a uniform distribution (as most random number generators produce, e.g. between 0.0 and 1.0) into a normal distribution? What if I want a mean and standard deviation of my choosing?
20
votes
6answers
5k views
Random weighted choice
Consider the class below that represents a Broker:
public class Broker
{
public string Name = string.Empty;
public int Weight = 0;
public Broker(string n, int w)
{
this.Name ...
16
votes
6answers
325 views
Are there algorithms for generating psychologically random numbers?
True random numbers often don't seem random to the average person since randomly generated sequences will be interpreted as structure. Are there any algorithms that generate a set of numbers that ...
16
votes
12answers
805 views
Algorithm for incrementing a String in a non-obvious manner
I want to create random-looking 5 or 6 character alpha-numeric strings, something like:
Vg78KY
Creating (pseudo-)random Strings has been answered, but I am wondering if there is an algorithm for ...
15
votes
11answers
1k views
java random percentages
I need to generate n percentages (integers between 0 and 100) such that the sum of all n numbers adds up to 100.
If I just do nextInt() n times, each time ensuring that the parameter is 100 minus ...
15
votes
9answers
3k views
What Type of Random Number Generator is Used in the Gaming Industry?
Given the extremely high requirements for unpredictability to prevent casinos from going bankrupt, what random number generation algorithm and seeding scheme is typically used in devices like slot ...
15
votes
4answers
7k views
Weighted random selection with and without replacement
Recently I needed to do weighted random selection of elements from a list, both with and without replacement. While there are well known and good algorithms for unweighted selection, and some for ...
14
votes
5answers
1k views
Generating shuffled range using a PRNG rather than shuffling
Is there any known algorithm that can generate a shuffled range [0..n) in linear time and constant space (when output produced iteratively), given an arbitrary seed value?
Assume n may be large, e.g. ...
14
votes
12answers
3k views
How do you efficiently generate a list of K non-repeating integers between 0 and an upper bound N
The question gives all necessary data: what is an efficient algorithm to generate a sequence of K non-repeating integers within a given interval. The trivial algorithm (generating random numbers and, ...
13
votes
20answers
5k views
True random number generator
Sorry for this not being a "real" question, but Sometime back i remember seeing a post here about randomizing a randomizer randomly to generate truly random numbers, not just pseudo random. I dont see ...
12
votes
6answers
294 views
Generating random numbers under very specific constraints
I am faced with the following programming problem. I need to generate n (a, b) tuples for which the sum of all a's is a given A and sum of all b's is a given B and for each tuple the ratio of a / b is ...
11
votes
10answers
1k views
selection based on percentage weighting
I have a set of values, and an associated percentage for each:
a: 70% chance
b: 20% chance
c: 10% chance
I want to select a value (a, b, c) based on the percentage chance given.
how do I approach ...
11
votes
11answers
1k 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 ...
10
votes
4answers
472 views
Select a random item, without knowing the total number of items
I have a case where I need to select a random item, but I don't know the total number of items and I don't want to build a huge array then pick an item out. For example, this is what I have right now:
...
10
votes
4answers
2k views
Random prime number
How do I quickly generate a random prime number, that is for sure 1024 bit long?
10
votes
8answers
1k 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 ...
9
votes
1answer
263 views
Data structure for choosing random elements?
Does anyone know of a data structure that supports the two operations efficiently?
Insert a value into the data structure.
Dequeue and return an entry from the data structure with uniformly random ...
9
votes
12answers
6k 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 chosen than a less ...
8
votes
6answers
227 views
Ideas for an algorithm for random distribution of circles in a square
I am searching for a concept to distribute circles in a square randomly, so that they dont overlap. All circles are of the same size. The area covered by the circles can be high, up to the theoretical ...
8
votes
6answers
202 views
Is there an efficient algorithm to generate random points in general position in the plane?
I need to generate n random points in general position in the plane, i.e. no three points can lie on a same line. Points should have coordinates that are integers and lie inside a fixed square m x m. ...
8
votes
4answers
375 views
Reinventing The Wheel: Random Number Generator
So I'm new to C++ and am trying to learn some things. As such I am trying to make a Random Number Generator (RNG or PRNG if you will). I have basic knowledge of RNGs, like you have to start with a ...
8
votes
6answers
850 views
How to generate correlated binary variables
I need to generate a series of N random binary variables with a given correlation function. Let x = {xi} be a series of binary variables (taking the value 0 or 1, i running from 1 to N). The marginal ...
8
votes
6answers
3k views
C# Normal Random Number
I would like to create a function that accepts Double mean, Double deviation and returns a random number with a normal distribution.
Example: if I pass in 5.00 as the mean and 2.00 as the ...
8
votes
6answers
513 views
Iterating shuffled [0..n) without arrays
I know of a couple of routines that work as follows:
Xn+1 = Routine(Xn, max)
For example, something like a LCG generator:
Xn+1 = (a*Xn + c) mod m
There isn't enough ...
7
votes
3answers
228 views
Algorithm to generate random 2D polygon
I'm not sure how to approach this problem. I'm not sure how complex a task it is. My aim is to have an algorithm that generates any polygon. My only requirement is that the polygon is not complex ...
7
votes
2answers
130 views
Random-first search?
The two most common ways to traverse a graph are breadth-first search and depth-first search. Both of these search algorithms follow a common template:
Create a worklist W, seeded with the start ...
7
votes
11answers
317 views
Algorithm to generate random number of size X
In my mobile application I have to provide the user with a random unique X alphanumeric code so that the user can reply with that alphanumeric code to perform some task.
The number of users going to ...
7
votes
2answers
177 views
Does this simple shuffling algorithm return a randomly shuffled deck of playing cards? [closed]
You have a list of 52 cards where the position of the cards in that list does not move.
You have a second list of card positions. At first, the position list is the same as the first list.
1) Iterate ...
7
votes
5answers
378 views
How to implement a repeating shuffle that's random - but not too random
I've got a list of n items. I want an algorithm to let me pick a potentially infinite sequence of items from that collection at random, but with a couple of constraints:
once an item has been ...
7
votes
4answers
573 views
Generating Random Non-Singular Integer Matrices
As part of a synthetic noise generation algorithm, I have to construct on the fly a lot of large non-singular square matrices
a i,j (i,j:1..n) / ∀ (i,j) a i,j ∈ ℤ and 0 ≤ a i,j ...
7
votes
3answers
817 views
Facebook Hacker Cup Subround 1B - Slot Machine Hacker
Source: Facebook Hacker Cup.
I've tried generating a few lists of return values from the function below but can't seem to find what makes it possible to predict future random numbers. How would I go ...
7
votes
6answers
481 views
How to Prove one Random Number Generator is Better Than Another?
How do you prove that one RNG is better than another?
I don't mean in terms of runtime, but rather the amount of entropy "generated" - which also rolls in the notion of periodicity (low period = low ...
7
votes
6answers
368 views
Most efficient way of randomly choosing a set of distinct integers
I'm looking for the most efficient algorithm to randomly choose a set of n distinct integers, where all the integers are in some range [0..maxValue].
Constraints:
maxValue is larger than n, and ...