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.
|
2
|
|||
|
|
|
|
||||
|
|
|
In Python:
|
||||
|
|
|
Since you said "Solutions for other languages are also welcome", here's the version for Python:
|
||
|
|
|
|
In Java:
|
||||||||
|
|
|
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 -
|
||
|
|
|
|
PHP, assuming "set" is an array:
The Mersenne Twister functions are better but there's no MT equivalent of array_rand in PHP. |
||
|
|
|
|
PHP, using MT:
|
||
|
|
|
|
Javascript solution ;)
Or alternatively:
|
||||
|
|
|
A somewhat related Did You Know: There are useful methods in java.util.Collections for shuffling whole collections:
and also
|
||
|
|
|
Perl 5
Here is one way to do it. |
||
|
|
|
|
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 |
|||
|
|
|
|
In C#
|
||
|
|
|
|
In lisp
|
||
|
|
|
|
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)). Alternatively, you could look for another Set implementation that more closely matches your requirements. The ListOrderedSet from Commons Collections looks promising. |
||
|
|
|
|
Clojure solution:
|
||
|
|
|
|
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
|
||
|
|
|
|
If the hashmap constantly grows in your code, then you can simply select the first element of its HashSet. That is
|
||
|
|
