in reply to RE (tilly) 3: Fisher-Yates Shuffle
in thread Fisher-Yates Shuffle
With branch: O(n) - O(log n), still O(n)
No branch: O(n) - O(n) + O(log n), still O(n).
In the long run, branch or no branch, the time is still dominated by n calls to the random function.
|
---|
Replies are listed 'Best First'. | |
---|---|
RE (tilly) 5 (the point): Fisher-Yates Shuffle
by tilly (Archbishop) on Aug 30, 2000 at 14:48 UTC |