Used this for generating weighted test data. it's not efficient but is easy
class ProbabilitySet<E> {
Set<Option<E>> options = new HashSet<Option<E>>();
class Option<E> {
E object;
double min;
double max;
private Option(E object, double prob) {
this.object = object;
min = totalProb;
max = totalProb + prob;
}
@Override
public String toString() {
return "Option [object=" + object + ", min=" + min + ", max=" + max + "]";
}
}
double totalProb = 0;
Random rnd = new Random();
public void add(E object, double probability){
Option<E> tuple = new Option<E>(object, probability);
options.add(tuple);
totalProb += probability;
}
public E getRandomElement(){
double no = rnd.nextDouble() * totalProb;
for (Option<E> tuple : options) {
if (no >= tuple.min && no < tuple.max){
return tuple.object;
}
}
return null; // if this happens sumfink is wrong.
}
@Override
public String toString() {
return "ProbabilitySet [options=" + options + ", totalProb=" + totalProb + "]";
}
}
NOTE: the probability parameters will be relative to the total not to 1.0
Usage:
public static void main(String[] args) {
ProbabilitySet<String> stati = new ProbabilitySet<String>();
stati.add("TIMEOUT", 0.2);
stati.add("FAILED", 0.2);
stati.add("SUCCESSFUL", 1.0);
for (int i = 0; i < 100; i++) {
System.out.println(stati.getRandomElement());
}
}
Iterator. – thejh Jan 4 '11 at 16:22java.util.Collection? – thejh Jan 4 '11 at 16:25nulls, which could make anArrayListof the collection relatively large. – Tom Hawtin - tackline Jan 4 '11 at 16:35