Is there a canonical way to randomize an array in Objective C?
|
feedback
|
|
My utility library defines this category on NSMutableArray to do it:
| |||||||||||||||||
feedback
|
Make sure to seed the random() function with either srandomdev() or srandom(). | |||||||||
feedback
|
|
| |||
|
feedback
|
|
There is none built into the SDK if that's what you are asking. You can use just about any randomization or shuffling algorithm you want however. Different algorithms have different tradeoffs in terms of randomness, efficiency, etc. http://en.wikipedia.org/wiki/Shuffling#Shuffling_algorithms For algorithms that shuffle "in-place" start with a mutable array use
For algorithms that reconstruct the array, feed it the original and build a new array. | |||
|
feedback
|
|
There isn't a canonical way without making a category on Here's an example from my library, part of a category on
Call | |||
|
feedback
|
|
My solution is a category method that returns a copy of the array (autoreleased) with elements randomised (using arc4random).
| |||
|
feedback
|
|
Here it is!
| ||||
|
feedback
|