Can anyone provide some pseudo code for a roulette selection function? How would I implement this: I don't really understand how to read this math notation.I want General algorithm to this.
|
1
|
|||||
|
|
|
Tirst, generate an array of the percentages you assigned, let's say Then get a random number between 1 to total, let's say Now, the algorithm in lua:
|
|||
|
|
|
|
The expert advice for the long term should be, either don't play or start a gambling house. ;-). |
||
|
|
|
|
The other answers seem to be assuming that you are trying to implement a roulette game. I think that you are asking about roulette wheel selection in evolutionary algorithms. Here is some Java code that implements roulette wheel selection. Assume you have 10 items to choose from and you choose by generating a random number between 0 and 1. You divide the range 0 to 1 up into ten non-overlapping segments, each proportional to the fitness of one of the ten items. For example, this might look like this:
This is your roulette wheel. Your random number between 0 and 1 is your spin. If the random number is 0.46, then the chosen item is item 3. If it's 0.92, then it's item 9. |
|||
|
|
|
|
Well, for an American Roulette wheel, you're going to need to generate a random integer between 1 and 38. There are 36 numbers, a 0, and a 00. One of the big things to consider, though, is that in American roulette, their are many different bets that can be made. A single bet can cover 1, 2, 3, 4, 5, 6, two different 12s, or 18. You may wish to create a list of lists where each number has additional flages to simplify that, or do it all in the programming. If I were implementing it in Python, I would just create a Tuple of 0, 00, and 1 through 36 and use random.choice() for each spin. |
|||
|
|
|
|
Roulette selection function pseudo code:
I may have the directions backwards. I’m not an expert in this particular technology. Sorry. |
||||
|
|
|
Random Number Generator pseudo code
Use the random number digits to create random numbers between 1 and 38 (or 37 European) for roulette. |
||||
|
|
|
There are 2 steps to this: First create an array with all the values on the wheel. This can be a 2 dimensional array with colour as well as number, or you can choose to add 100 to red numbers. Then simply generate a random number between 0 or 1 (depending on whether your language starts numbering array indexes from 0 or 1) and the last element in your array. Most languages have built-in random number functions. In VB and VBScript the function is RND(). In Javascript it is Math.random() Fetch the value from that position in the array and you have your random roulette number. Final note: don't forget to seed your random number generator or you will get the same sequence of draws every time you run the program. |
|||
|
|
