Hey guys, i have trouble generating unique random numbers using js. Can someone lend me a hand?
|
|
|||||||||||||||||||||
|
|
|||||||
|
|
Generate permutation of 100 numbers and then choose serially. Use Knuth Shuffle(aka the Fisher-Yates shuffle) Algorithm. JavaScript:
EDIT: Improved code:
Potential problem: Suppose we have array of 100 numbers {e.g. [1,2,3...100]} and we stop swapping after 8 swaps; then most of the times array will look like {1,2,3,76,5,6,7,8,...numbers here will be shuffled ...10}. Because every number will be swapped with probability 1/100 so prob. of swapping first 8 numbers is 8/100 whereas prob. of swapping other 92 is 92/100. But if we run algorithm for full array then we are sure (almost)every entry is swapped. Otherwise we face a question : which 8 numbers to choose? |
|||||||||||||
|
|
To avoid any long and unreliable shuffles, I'd do the following...
Voila - no repeated numbers. I may post some actual code later, if anybody is interested. Edit: It's probably the competitive streak in me but, having seen the post by @Alsciende, I couldn't resist posting the code that I promised.
|
|||||||||||||
|
|
Shuffling the numbers from 1 to 100 is the right basic strategy, but if you need only 8 shuffled numbers, there's no need to shuffle all 100 numbers. I don't know Javascript very well, but I believe it's easy to create an array of 100 nulls quickly. Then, for 8 rounds, you swap the n'th element of the array (n starting at 0) with a randomly selected element from n+1 through 99. Of course, any elements not populated yet mean that the element would really have been the original index plus 1, so that's trivial to factor in. When you're done with the 8 rounds, the first 8 elements of your array will have your 8 shuffled numbers. |
|||
|
|
|
I would do this:
|
|||
|
|
|
Same permutation algorithm as The Machine Charmer, but with a prototyped implementation. Better suited to large number of picks. Uses js 1.7 destructuring assignment if available.
Edit: An other proposition, better suited to small number of picks, based on belugabob's answer. To guarantee uniqueness, we remove the picked numbers from the array.
|
|||||||||||
|
|
for arrays with holes like this the following modified solution worked for me :)
|
||||
|
|
|
How about using object properties as a hash table? This way your best scenario is to only randomize 8 times. It would only be effective if you want a small part of the range of numbers. It's also much less memory intensive than Fisher-Yates because you don't have to allocate space for an array.
I then found out that Object.keys(obj) is an ECMAScript 5 feature so the above is pretty much useless on the internets right now. Fear not, because I made it ECMAScript 3 compatible by adding a keys function like this.
|
||||
|
|
In spite of what you might think, incrementing 'randomnumber' doesn't skew any probabilities - it is mathematically equivalent to removing the previous selections from the array. It's faster than shuffling an array of 100 values, and does not involve 'repicking'. |
|||||
|
|
|||
|
|
|
if you need more unique you must generate a array(1..100).
above code is faster: |
|||
|
|