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.
feedback
|
|
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. | |||||||||||||||||
feedback
|
|
Using linq:
| |||||
feedback
|
|
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. | ||||
feedback
|
|
I think the selected answer is correct and pretty sweet. I implemented it differently though, as I also wanted the result in random order.
| |||||||||||
feedback
|
|
From Dragons in the Algorithm, an interpretation in C#:
This algorithm will select unique indicies of the items list. | |||
|
feedback
|
|
why not something like this:
| |||
|
feedback
|
|
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: | |||
|
feedback
|
|
The simple solution I use (probably not good for large lists): Copy the list into temporary list, then in loop randomly select Item from temp list and put it in selected items list while removing it form temp list (so it can't be reselected). Example:
| |||
|
feedback
|
|
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. | |||
|
feedback
|
|
I recently did this on my project using an idea similar to Tyler's point 1.
Usage:
| |||
|
feedback
|
|
Here's my approach (full text here http://krkadev.blogspot.com/2010/08/random-numbers-without-repetition.html ). It should run in O(K) instead of O(N), where K is the number of wanted elements and N is the size of the list to choose from:
| |||
|
feedback
|
|
I just ran into this problem, and some more google searching brought me to the problem of randomly shuffling a list: http://en.wikipedia.org/wiki/Fisher-Yates_shuffle To completely randomly shuffle your list (in place) you do this: To shuffle an array a of n elements (indices 0..n-1):
If you only need the first 5 elements, then instead of running i all the way from n-1 to 1, you only need to run it to n-5 (ie: n-5) Lets say you need k items, This becomes:
Each item that is selected is swapped toward the end of the array, so the k elements selected are the last k elements of the array. This takes time O(k), where k is the number of randomly selected elements you need. Further, if you don't want to modify your initial list, you can write down all your swaps in a temporary list, reverse that list, and apply them again, thus performing the inverse set of swaps and returning you your initial list without changing the O(k) running time. Finally, for the real stickler, if (n == k), you should stop at 1, not n-k, as the randomly chosen integer will always be 0. | ||||
|
feedback
|
|
You can use this but the ordering will happen on client side
| |||
|
feedback
|