I have an array var words = []//lots of different words in it. I have a Math.floor(Math.random()*words.length) that chooses a random word from the array. This is run in a loop that runs for a random number of times (between 2 and 200 times). I would like to make sure that the random numbers do not get chosen more than once during the time that that loop runs. How would you suggest doing this?
|
|
|||||||||||||
|
|
There's multiple ways of doing this. You can shuffle the entire collection, and just grab items from one end. This will ensure you won't encounter any one item more than once (or rather, more than the number of times it occured in the original input array) during one whole iteration. This, however, requires you to either modify in-place the original collection, or to create a copy of it. If you only intend to grab a few items, there might be a different way. You can use a hash table or other type of dictionary, and just do a check if the item you picked at random in the original collection already exists in the dictionary. If it doesn't, add it to the dictionary and use it. If it already exists in the dictionary, pick again. This approach uses storage proportional to the number of items you need to pick. Also note that this second approach is a bit bad performance-wise when you get to the few last items in the list, as you can risk hunting for the items you still haven't picked for quite a number of iterations, so this is only a viable solution if the items you need to randomly pick are far fewer than the number of items in the collection. |
|||||
|
|
There are several different approaches, which are more or less effective depending on how much data you have, and how many items you want to pick:
|
|||
|
|
|
I'd shuffle the array as follows and then iterate over the shuffled array. There's no expensive array
|
||||
|
|
|
this is how you can do it without shuffling the whole array
the idea is to pick from |
|||
|
There are several solutions to this. What you could do is use .splice() on your array to remove the item which is hit by words. Then you can iterate over your array until it's empty. If you need to keep the array pristine you can create a copy of it first and iterate over the copy.
Or something to that effect. |
|||
|
|
|
I'd try using a map (
then make a function to pick a random entry based on the length, delete the entry (hence the index) and adjust the length:
with this approach, you have to check for an HTH |
||||
|
|
|
Here is a way with prime numbers and modulo that seems to do the trick without moving the original array or adding a hash:
|
|||||||||||||||
|