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.
|
|
Iterate through and for each element make the probability of selection = (number needed)/(number left) So if you had 40 items, the first would have a 5/40 chance of being selected. If it is, the next has a 4/39 chance, otherwise it has a 5/39 chance. By the time you get to the end you will have your 5 items, and often you'll have all of them before that. |
||
|
|
|
|
This is actually a harder problem than it sounds like, mainly because many mathematically-correct solutions will fail to actually allow you to hit all the possibilities (more on this below). First, here are some easy-to-implement, correct-if-you-have-a-truly-random-number generator: (0) Kyle's answer, which is O(n). (1) Generate a list of n pairs [(0, rand), (1, rand), (2, rand), ...], sort them by the second coordinate, and use the first k (for you, k=5) indices to get your random subset. I think this is easy to implement, although it is O(n log n) time. (2) Init an empty list s = [] that will grow to be the indices of k random elements. Choose a number r in {0, 1, 2, ..., n-1} at random, r = rand % n, and add this to s. Next take r = rand % (n-1) and stick in s; add to r the # elements less than it in s to avoid collisions. Next take r = rand % (n-2), and do the same thing, etc. until you have k distinct elements in s. This has worst-case running time O(k^2). So for k << n, this can be faster. If you keep s sorted and track which contiguous intervals it has, you can implement it in O(k log k), but it's more work. @Kyle - you're right, on second thought I agree with your answer. I hastily read it at first, and mistakenly thought you were indicating to sequentially choose each element with fixed probability k/n, which would have been wrong - but your adaptive approach appears correct to me. Sorry about that. Ok, and now for the kicker: asymptotically (for fixed k, n growing), there are n^k/k! choices of k element subset out of n elements [this is an approximation of (n choose k)]. If n is large, and k is not very small, then these numbers are huge. The best cycle length you can hope for in any standard 32 bit random number generator is 2^32 = 256^4. So if we have a list of 1000 elements, and we want to choose 5 at random, there's no way a standard random number generator will hit all the possibilities. However, as long as you're ok with a choice that works fine for smaller sets, and always "looks" random, then these algorithms should be ok. Addendum: After writing this, I realized that it's tricky to implement idea (2) correctly, so I wanted to clarify this answer. To get O(k log k) time, you need an array-like structure that supports O(log m) searches and inserts - a balanced binary tree can do this. Using such a structure to build up an array called s, here is some pseudopython:
I suggest running through a few sample cases to see how this efficiently implements the above English explanation. |
|||
|
|
|
|
I think the selected answer is correct and pretty sweet. I implemented it differently though, as I also wanted the result in random order.
|
||
|
|
|
I may not be up on my number theory, but I still don't understand why my algorithm would produce biased results. Maybe my hand-done test trials use numbers too small (or my math is in error) in which case I'd welcome some input. Select 1 of {a, b, c}: P(a) = 1/3 P(b) = (2/3)*(1/2) = 1/3 P(c) = (2/3)*(1/2)*(1/1) = 1/3 Select 2 of {a, b, c, d} P(ab) = (1/2)*(1/3) = 1/6 P(ac) = (1/2)*(2/3)*(1/2) = 1/6 P(ad) = (1/2)*(2/3)*(1/2)*(1/1) = 1/6 P(bc) = (1/2)*(2/3)*(1/2) = 1/6 P(bd) = (1/2)*(2/3)*(1/2)*(1/1) = 1/6 P(cd) = (1/2)*(1/3)*(1/1)*(1/1) = 1/6 |
||
|
|
|
|
From Dragons in the Algorithm, an interpretation in C#:
This algorithm will select unique indicies of the items list. |
||
|
|
|
|
This is the best I could come up with on a first cut:
Using a list of randoms within a range of 1 - total list count and then simply pulling those items in the list seemed to be the best way, but using the Dictionary to ensure uniqueness is something I'm still mulling over. Also note I used a string list, replace as needed. |
||
|
|
|
|
I recently did this on my project using an idea similar to Tyler's point 1.
Usage:
|
||
|
|
|
|
why not something like this:
|
||
|
|
|
|
It is a lot harder than one would think. See the great Article "Shuffling" from Jeff. I did write a very short article on that subject including C# code: |
||
|
|
