If you have an NSMutableArray, how do you shuffle the elements randomly?
(I have my own answer for this, which is posted below, but I'm new to Cocoa and I'm interested to know if there is a better way.)
|
If you have an NSMutableArray, how do you shuffle the elements randomly? (I have my own answer for this, which is posted below, but I'm new to Cocoa and I'm interested to know if there is a better way.)
| ||||
|
feedback
|
|
You don't need the swapObjectAtIndex method. exchangeObjectAtIndex:withObjectAtIndex: already exists. | |||||
feedback
|
|
I solved this by adding a category to NSMutableArray. Note that this implementation uses Edit Removed unnecessary method thanks to answer by Ladd.
| |||||||||||||||
feedback
|
|
This is the simplest and fastest way to shuffle NSArrays or NSMutableArrays (object puzzles is a NSMutableArray, it contains puzzle objects. I've added to puzzle object variable index which indicates initial position in array)
log output:
you may as well compare obj1 with obj2 and decide what you want to return possible values are:
| |||||||||
feedback
|
|
Take a look at this question: Real-world problems with naive shuffling with respect to your shuffling algorithm. | |||||||
feedback
|