I was asked this question in a job interview. The interviewer and I disagreed on what the correct answer was. I'm wondering if anyone has any data on this.
Update: I should have mentioned that the use of shuffle() was strictly forbidden... sorry.
|
|
I was asked this question in a job interview. The interviewer and I disagreed on what the correct answer was. I'm wondering if anyone has any data on this. Update: I should have mentioned that the use of shuffle() was strictly forbidden... sorry. |
|||
|
|
|
|
You could use the Fisher-Yates shuffle. |
||
|
|
|
shuffle($arr); :) edit: I should clarify... my definition of best involves not just algorithm efficiency but code readability and maintainability as well. Using standard library functions means maintaining less code and reading much less too. Beyond that, you can get into year-long debates with PhD professors about the best "true random" function, so somebody will always disagree with you on randomization questions. |
||
|
|
|
|
Well here's the solution I came up with:
And here's his solution:
I ran a bunch of trials on both methods (trying each 1,000,000 times) and the speed difference was negligible. However, upon checking the actual randomness of the results I was surprised at how different the distributions were. Here's my results:
As you can see, the first method provides an almost perfect distribution indicating that it's being more-or-less truly random, whereas the second method is all over the place. |
||
|
|
|
|
The "correct" way is pretty vague. The best (fastest / easiest / most elegant) to sort an array would be to just use the built-in shuffle() function. |
||
|
|
|
|
PHP has a built in function --> shuffle() . I would say that should do what you like, but it mostly likely will be anything but totally 'random'. Check http://computer.howstuffworks.com/question697.htm for a little description of why its very, very difficult to get complete randomness form a computer. |
||
|
|
|
|
He's probably testing you on a relatively common mistake most people make when implementing a shuffling algorithm (this was also actually at the center of a controversy involving an online poker site a few years back) Incorrect way to shuffle:
Correct way to shuffle:
Graph out the probability distribution for these cases and it's easy to see why the first solution is incorrect. |
||
|
|
|
Short Answer: PHP's array_rand() function Given that the use of the shuffle function is forbidden, I would use $keys = array_rand($myArray, count($myArray)) to return an array of the keys from $myArray in random order. From there it should be simple to reassemble them into a new array that has been randomized. Something like:
|
|||
|
|