vote up 5 vote down star
2

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.

flag
You should specify some conditions to see if this is really what you want. - How may times are you going to be selecting a random element? - Does the data need to be stored in a HashSet or LinkedHashSet, neither are not randomly accessable. - Is the hash set large? Are the keys small? – David Nehme Sep 25 '08 at 2:03

17 Answers

vote up 4 vote down check
int size = myHashSet.size();
int item = new Random().nextInt(size); // In real life, the Random object should be rather more shared than this
int i = 0;
for(Object obj : myhashSet)
{
    if (i == item)
        return obj;
    i = i + 1;
}
link|flag
If myHashSet is large, then this will be a rather slow solution since on average, (n / 2) iterations will be needed to find the random object. – daniel Sep 24 '08 at 2:30
if your data is in a hash set, you need O(n) time. There's no way around it if you are just picking a single element and the data is stored in a HashSet. – David Nehme Sep 25 '08 at 2:00
vote up 0 vote down

In Python:

s = set(1, 2, 3)
print random.choice(s)
link|flag
2  
This is actually false, as it produces following error: TypeError: 'set' object is unindexable. Try random.choice(list(s)) instead... – Daren Thomas Nov 4 '08 at 19:41
vote up 0 vote down

Since you said "Solutions for other languages are also welcome", here's the version for Python:

>>> import random
>>> random.choice([1,2,3,4,5,6])
3
>>> random.choice([1,2,3,4,5,6])
4
link|flag
vote up 2 vote down

In Java:

Set<Integer> set = new LinkedHashSet<Integer>(3);
set.add(1);
set.add(2);
set.add(3);

Random rand = new Random(System.currentTimeMillis());
for (int i = 0; i < 10; ++i) {
    System.out.println(set.toArray()[rand.nextInt(set.size())]);
}
link|flag
1  
Your answer works, but it's not very efficient because of the set.toArray( ) part. – Clue Less Sep 24 '08 at 1:34
1  
you should move the toArray to outside the loop. – David Nehme Sep 25 '08 at 1:57
vote up 2 vote down

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 -

function randFromSet(target){
 var targetLength:uint = target.length()
 var randomIndex:uint = random(0,targetLength);
 return target[randomIndex];
}
link|flag
vote up 0 vote down

PHP, assuming "set" is an array:

$foo = array("alpha", "bravo", "charlie");
$index = array_rand($foo);
$val = $foo[$index];

The Mersenne Twister functions are better but there's no MT equivalent of array_rand in PHP.

link|flag
vote up 0 vote down

PHP, using MT:

$items_array = array("alpha", "bravo", "charlie");
$last_pos = count($items_array) - 1;
$random_pos = mt_rand(0, $last_pos);
$random_item = $items_array[$random_pos];
link|flag
vote up 1 vote down

Javascript solution ;)

function choose (set) {
	return set[Math.floor(Math.random() * set.length)];
}

var set  = [1, 2, 3, 4], rand = choose (set);

Or alternatively:

Array.prototype.choose = function () {
	return this[Math.floor(Math.random() * this.length)];
};

[1, 2, 3, 4].choose();
link|flag
I prefer the second alternative. :-) – marcospereira Sep 24 '08 at 12:41
ooh, I like extending adding the new array method! – matt lohkamp Sep 27 '08 at 22:06
vote up 5 vote down

A somewhat related Did You Know:

There are useful methods in java.util.Collections for shuffling whole collections:

/**
 * Randomly permutes the specified list using a default source of
 * randomness.  All permutations occur with approximately equal
 * likelihood.<p>
 *
 * The hedge "approximately" is used in the foregoing description because
 * default source of randomness is only approximately an unbiased source
 * of independently chosen bits. If it were a perfect source of randomly
 * chosen bits, then the algorithm would choose permutations with perfect
 * uniformity.<p>
 *
 * This implementation traverses the list backwards, from the last element
 * up to the second, repeatedly swapping a randomly selected element into
 * the "current position".  Elements are randomly selected from the
 * portion of the list that runs from the first element to the current
 * position, inclusive.<p>
 *
 * This method runs in linear time.  If the specified list does not
 * implement the {@link RandomAccess} interface and is large, this
 * implementation dumps the specified list into an array before shuffling
 * it, and dumps the shuffled array back into the list.  This avoids the
 * quadratic behavior that would result from shuffling a "sequential
 * access" list in place.
 *
 * @param  list the list to be shuffled.
 * @throws UnsupportedOperationException if the specified list or
 *         its list-iterator does not support the <tt>set</tt> operation.
 */
public static void shuffle(List<?> list) {
   ...
}

and also

public static void shuffle(List<?> list, Random rnd) {
  ...
}
link|flag
very cool. didn't know this existed. – Owen Sep 24 '08 at 19:48
vote up 1 vote down

Perl 5

@hash_keys = (keys %hash);
$rand = int(rand(@hash_keys));
print $hash{$hash_keys[$rand]};

Here is one way to do it.

link|flag
vote up 0 vote down

Icon has a set type and a random-element operator, unary "?", so the expression

? set( [1, 2, 3, 4, 5] )

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 randomize()

link|flag
vote up 1 vote down

In C#

        Random random = new Random((int)DateTime.Now.Ticks);

        OrderedDictionary od = new OrderedDictionary();

        od.Add("abc", 1);
        od.Add("def", 2);
        od.Add("ghi", 3);
        od.Add("jkl", 4);


        int randomIndex = random.Next(od.Count);

        Console.WriteLine(od[randomIndex]);

        // Can access via index or key value:
        Console.WriteLine(od[1]);
        Console.WriteLine(od["def"]);
link|flag
vote up 2 vote down

In lisp

(defun pick-random (set)
       (nth (random (length set)) set))
link|flag
vote up 2 vote down

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.

link|flag
vote up -1 vote down

Clojure solution:

(defn pick-random [set] (let [sq (seq set)] (nth sq (rand-int (count sq)))))
link|flag
vote up 1 vote down

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 
link|flag
vote up 0 vote down

If the hashmap constantly grows in your code, then you can simply select the first element of its HashSet. That is

Object randElement = yourMap.get(yourMap.keySet().iterator().next());
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.