I know I can pick a random element out of an array with the sample method but this leaves the possibility of an element being picked more than once. I could shuffle the array first and then go from first to last element in order but I understand this is memory intensive and I am looking for a less intensive method if possible!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Shuffling an array is not memory intensive. Ruby has a default in place shuffle implementation, it's called
This implementation follows the classic Fisher-Yates algorithm. So:
Overall you have what you need with no extra memory and time complexity |
||||
|
|
|
No element will be selected twice. |
|||
|
|
You have to track those elements you have already selected; what are you going to do, put them in an array of their own? Shuffle and iterate. This does not take more memory than tracking those elements already selected. |
|||
|
|
|
If the array elements are really very large, you can try to simply shuffle a list of indices and iterate over that:
|
|||
|
|