[algogeeks] Re: Random element placing or shuffling

2011-01-31 Thread juver++
Random shuffle algorithm: for i = n - 1 to 1 j = random index within [0..i) swap elements at (i, j) end -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from

[algogeeks] Re: Random element placing or shuffling

2011-01-31 Thread bittu
Juver++..right its basically Knuth Shuffle Simple Algo.. http://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle Thanks Shashank -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email to