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.
feedback
|
| |||||||||||
feedback
|
|
A somewhat related Did You Know: There are useful methods in java.util.Collections for shuffling whole collections:
and also
| |||||
feedback
|
|
In Java:
| |||||||||
feedback
|
|
Can't you just get the size/length of the set/array, generate a random number between 0 and the size/length, then call the element whose index matches that number? HashSet has a .size() method, I'm pretty sure. In psuedocode -
| |||
feedback
|
|
Perl 5
Here is one way to do it. | |||
|
feedback
|
|
Clojure solution:
| |||
|
feedback
|
|
C++. This should be reasonably quick, as it doesn't require iterating over the whole set, or sorting it. This should work out of the box with most modern compilers, assuming they support tr1. If not, you may need to use Boost. The Boost docs are helpful here to explain this, even if you don't use Boost. The trick is to make use of the fact that the data has been divided into buckets, and to quickly identify a randomly chosen bucket (with the appropriate probability).
| ||||
|
feedback
|
|
If you want to do it in Java, you should consider copying the elements into some kind of random-access collection (such as an ArrayList). Because, unless your set is small, accessing the selected element will be expensive (O(n) instead of O(1)). [ed: list copy is also O(n)] Alternatively, you could look for another Set implementation that more closely matches your requirements. The ListOrderedSet from Commons Collections looks promising. | |||||||
feedback
|
|
PHP, assuming "set" is an array:
The Mersenne Twister functions are better but there's no MT equivalent of array_rand in PHP. | |||
|
feedback
|
|
In C#
| |||
|
feedback
|
|
Javascript solution ;)
Or alternatively:
| |||||
|
feedback
|
|
In lisp
| |||
|
feedback
|
|
Here's how you'd do it in java if you wanted a specific weights applied to the set/array.
public static Object getRandom(Set s,double[] weight){
return this.getRandom(s.toArray(),weight);
}
public static Object getRandom(Object[] obj, double[] weight){
if (ary.length != weight.length) {
throw new IllegalArgumentException(
"Array and array weights must be of equal length.");
}
double totWeight = sumWeights(weight);
if (totWeight == 0.0) {
return null;
}
double rnd = Math.random() * totWeight;
for (int i = 0; i
| |||
|
feedback
|
|
Unfortunately, this cannot be done efficiently (better than O(n)) in any standard set containers I know of. This is odd, since it is very easy to add a randomized pick function to hash sets as well as binary sets. In a not to sparse hash set, you can try random entries, until you get a hit. For a binary tree, you can choose randomly between the left or right subtree, with a maximum of O(log2) steps. I've implemented a demo of the later below:
I got [995, 975, 971, 995, 1057, 1004, 966, 1052, 984, 1001] as output, so the distribution seams good. I've struggled with the same problem for myself, and I haven't yet decided weather the performance gain of this more efficient pick is worth the overhead of using a python based collection. I could of course refine it and translate it to C, but that is too much work for me today :) | |||
|
feedback
|
|
In Mathematica:
Or, in recent versions, simply:
This received a down-vote, perhaps because it lacks explanation, so here one is:
Since hash table functionality is frequently done with rules in Mathematica, and rules are stored in lists, one might use:
| ||||
|
feedback
|
|
Since you said "Solutions for other languages are also welcome", here's the version for Python:
| |||||
feedback
|
|
PHP, using MT:
| |||
|
feedback
|
|
Icon has a set type and a random-element operator, unary "?", so the expression
will produce a random number between 1 and 5. The random seed is initialized to 0 when a program is run, so to produce different results on each run use | ||||
|
feedback
|
|
after reading this thread, the best i could write is:
| |||
|
feedback
|
|
Fast solution for Java using an Motivation: I needed a set of items with
| |||
|
feedback
|