I am currently attempting to implement a java roulette wheel selection (see http://en.wikipedia.org/wiki/Fitness_proportionate_selection).
My problem comes after finding the relative fitness for each individual of my population.
For example, Say I create a probalistic roulette such as :
individual a : 0 - 0.3 individual b : 0.3 - 0.5 individual c : 0.5 - 1
Whereas individual a has a 30% change of being selected, b has 20% and c has 50% of being selected was I to spin this roulette.
My problem is, the wikipedia article mention "Note performance gains can be achieved by using a binary search rather than a linear search to find the right pocket." implying that after generating my random number, I have to complete a linear or binary search of my pockets to find which one has been selected.
The thing is, from a performance point of view this binary search to find the right pocket at each turn seems unnecessary, wouldn't it be possible to simply have some kind of HashMap whereas each entry in the table is linked to the range as shown above and pulling using a key within that range would pull out the associated individual in linear time instead of requiring a binarysearch.
Ive looked at the treemap, but the treemap has to initialy sort the pockets which is a no go, no sorting.
Well maybe this code of Roulette wheel selection in java can ghet you started to get all you can get Chromosome class here
Chromosome.java