12
votes
7answers
704 views
C#: Is using Random and OrderBy a good shuffle algorithm?
I have read an article about various shuffle algorithms over at Coding Horror. I have seen that somewhere people have done this to shuffle a list:
var r = new Random();
var shuffled = …
6
votes
11answers
749 views
why does this simple shuffle algorithm produce biased results? what is a simple reason?
it seems that this simple shuffle algorithm will produce biased results:
# suppose $arr is filled with 1 to 52
for ($i < 0; $i < 52; $i++) {
$j = rand(0, 51);
# swap the items
$tmp = …
6
votes
8answers
623 views
Shuffle using IComparer
First of all, I do know about the Fisher-Yates shuffle. But lets say for arguments sake that I want to allow the user to pick a sort option from a Dropdown list. This list would include a "Random" …
5
votes
4answers
220 views
How do I shuffle two arrays in exactly the same way in Perl?
Does anyone know how to shuffle two arrays randomly in exactly the same way in Perl?
For example, say I have these two arrays:
Before shuffling:
array 1: 1, 2, 3, 4, 5
array 2: a, b, c, d, e
After …
5
votes
5answers
192 views
Test Probabilistic Functions
I need a function which returns an array in random order. I want to ensure that it is randomish but I have no idea how one would go about writing the tests to ensure that the array really is random. …
5
votes
4answers
445 views
Generating shuffled range using a PRNG rather than shuffling
Is there any known algorithm that can generate a shuffled range [0..n) in linear time and constant space (when output produced iteratively), given an arbitrary seed value?
Assume n may be large, e.g. …
5
votes
7answers
2k views
Most efficient way to randomly “sort” (Shuffle) a list of integers in C#
I need to randomly 'sort' a list of integers (0-1999) in the most efficient way possible. Any ideas?
Currently, I am doing something like this:
bool[] bIndexSet = new bool[iItemCount];
for (int …
4
votes
4answers
102 views
How to randomly sort (scramble) an array in Ruby?
I'd like to have my array items scrambled.
Something like this:
[1,2,3,4].scramble => [2,1,3,4]
[1,2,3,4].scramble => [3,1,2,4]
[1,2,3,4].scramble => [4,2,3,1]
and so on, randomly
4
votes
7answers
189 views
What is the best List implementation for Large lists in java
Hi,
I have to create a large list of n elements (could be up to 100,000). each element in the list is an integer equivalent to the index of the list. After this I have to call Collections.shuffle …
4
votes
2answers
326 views
Using Collections API to Shuffle
I am getting very frustrated because I cannot seem to figure out why Collections shuffling is not working properly.
Lets say that I am trying to shuffle the 'randomizer' array.
int[] …
4
votes
4answers
2k views
What’s the Best Way to Shuffle an NSMutableArray?
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 …
3
votes
1answer
227 views
How does this MATLAB code work? (probabilities and random sequences)
I saw this code in a comment for the article "Never-ending Shuffled Sequence". I understand the basic premise, but I don't know how it works. The biggest explanation I need is of the first two lines …
3
votes
3answers
741 views
How to use Java Collections.shuffle() on a Scala array?
I have an array that I want to permutate randomly. In Java, there is a method Collections.shuffle() that can shuffle the elements of a List randomly. It can be used on an array too:
String[] array = …
3
votes
2answers
500 views
Shuffling a list of objects in python
I have a list of objects in python and I want to shuffle them. I thought I could use the random.shuffle method, but this seems to fail when the list is of objects. Is there a method for shuffling …
3
votes
6answers
1k views
Is it correct to use JavaScript Array.sort() method for shuffling?
I was helping somebody out with his JavaScript code and my eyes were caught by a section that looked like that:
function randOrd(){
return (Math.round(Math.random())-0.5);
}
coords.sort(randOrd);
…
