Tagged Questions
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 ...
7
votes
10answers
2k views
Rosetta Stone: reservoir random sampling algorithm
I've been killing some time with a little puzzle project -- writing the algorithm described in Knuth for random sampling of a population without knowing the size of the population in advance. So far ...
3
votes
3answers
126 views
Efficient algorithm for random sampling from a distribution while allowing updates?
This is the question I was asked some time ago on interview, I could not find answer for.
Given some samples S1, S2, ... Sn and their probability distributions(or weights, whatever it is called) P1, ...
3
votes
2answers
185 views
Select K random lines from a text file
This is an extension of the original question of selecting a random line from a text of X lines where the probability of the text line selected is 1/X. The trick is to select the Jth line if you query ...
3
votes
3answers
138 views
expected running time vs. worst-case running time
i am studying the randomized-quicksort algorithm and i realized that the running time of this algorithm is always represented as "expected running time". what was the reason of it? why don't we ...
3
votes
3answers
223 views
how to numerically sample from a joint, discrete, probability distribution function
I have a 2D "heat map" or PDF that I need to recreate by random sampling. I.E. I have a 2D probability density map showing starting locations. I need to randomly choose starting locations with the ...