Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

45
votes
8answers
10k 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); ...
43
votes
8answers
1k views

What distribution do you get from this broken random shuffle?

The famous Fisher-Yates shuffle algorithm can be used to randomly permute an array A of length N: For k = 1 to N Pick a random integer j from k to N Swap A[k] and A[j] A common mistake that ...
40
votes
7answers
6k 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 = ...
31
votes
1answer
567 views

What's a good one-pass pseudo-random shuffle? [closed]

The Fisher-Yates shuffle gives a nice algorithm to shuffle an array A of length n in a single pass: For k = 1 to n Pick a random integer j from k to n Swap A[k] and A[j] After a single pass ...
31
votes
4answers
14k 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 ...
22
votes
9answers
16k 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 ...
19
votes
3answers
14k 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 ...
14
votes
5answers
1k 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. ...
12
votes
3answers
585 views

How to shuffle a std::vector in C++?

I am looking for a generic, reusable way to shuffle a std::vector in C++. This is how I currently do it, but I think it's not very efficient because it needs an intermediate array and it needs to know ...
12
votes
6answers
5k views

How can I shuffle the lines of a text file in Unix command line?

I searched SO for a similar Q/A to no avail. I want to shuffle the lines of a text file randomly and create a new file. The file may have several thousands of lines. How can I do that with cat, awk, ...
11
votes
11answers
2k 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 = ...
10
votes
2answers
149 views

Fisher Yates variation

The classic Fisher Yates looks something like this: void shuffle1(std::vector<int>& vec) { int n = vec.size(); for (int i = n - 1; i > 0; --i) { std::swap(vec[i], ...
10
votes
4answers
500 views

What, if anything, is wrong with this shuffling algorithm and how can I know?

Just as background, I'm aware of the Fisher-Yates perfect shuffle. It is a great shuffle with its O(n) complexity and its guaranteed uniformity and I'd be a fool not to use it ... in an environment ...
9
votes
4answers
332 views

Can Python's set absence of ordering be considered random order?

I'd like to know if the absence of element ordering of the Python's built-in set structure is "random enough". For instance, taking the iterator of a set, can it be considered a shuffled view of its ...
9
votes
6answers
2k views

Shuffle List<T>

I have a list which contains many thousands of FilePath's to locations of audio files, and was wondering which would be the most efficient way to "shuffle" a List? Any help is greatly appreciated :) ...
9
votes
7answers
2k 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" ...
8
votes
2answers
201 views

Card Game: Randomly pick 1 number out of array of 52 without duplicates

I have a simple card game (using 52 cards - no jokers) that I want to randomly pick 1 card at a time until the winning card is chosen. I have the following array: $cards = array( 'diamond' => ...
8
votes
5answers
2k 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
7
votes
2answers
168 views

Does this simple shuffling algorithm return a randomly shuffled deck of playing cards? [closed]

You have a list of 52 cards where the position of the cards in that list does not move. You have a second list of card positions. At first, the position list is the same as the first list. 1) Iterate ...
7
votes
3answers
199 views

Why isn't this shuffle algorithm biased

My coworker and I are arguing about why the shuffle algorithm given in this list of JS tips & tricks doesn't produce biased results like the sort Jeff Atwood describes for naive shuffles. The ...
7
votes
3answers
303 views

Shuffling a list in Mathematica

What's the best/easiest way to shuffle a long list in Mathematica?
7
votes
5answers
346 views

How to implement a repeating shuffle that's random - but not too random

I've got a list of n items. I want an algorithm to let me pick a potentially infinite sequence of items from that collection at random, but with a couple of constraints: once an item has been ...
7
votes
5answers
308 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. ...
6
votes
5answers
139 views

How to make a random but partial shuffle in Python?

Instead of a complete shuffle, I am looking for a partial shuffle function in python. Example : "string" must give rise to "stnrig", but not "nrsgit" It would be better if I can define a specific ...
6
votes
2answers
601 views

Maximal Length of List to Shuffle with Python random.shuffle?

I have a list which I shuffle with the Python built in shuffle function (random.shuffle) However, the Python reference states: Note that for even rather small len(x), the total number of ...
6
votes
3answers
5k 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 = ...
6
votes
3answers
6k views

C#: Good/Best implementation of Swap method

I read this post about card shuffling and in many shuffling and sorting algorithms you need to swap two items in a list or array. But what does a good and effecient Swap method look like? Lets say for ...
5
votes
1answer
54 views

Does sort function consider the leaf nodes in a multilevel array?

This following piece of code is meant to create a multilevel array, print it, then shuffle it, again print it, and sort the array. $arr=array( array( array('a','b','c') ), ...
5
votes
4answers
279 views

shuffle order of images in php

I have the following images in that I'm using for a carousel. Each time the page loads I want them in in a different order. I was thinking of just ordering the numbers using a random number generator, ...
5
votes
3answers
805 views

How random is PHP's shuffle function?

Does anyone know what's the randomness of PHP's shuffle() function? Does it depend on the operating system? Does it use PHP's own seeder? Is it possible to use mt_rand() as generator?
5
votes
4answers
404 views

Better algorithm to riffle shuffle (or interleave) multiple lists of varying lengths

I like to watch my favorite TV shows on the go. I have all episodes of each show I'm following in my playlist. Not all shows consist of the same number of episodes. Unlike some who prefer ...
5
votes
5answers
561 views

Shuffle and deal a deck of card with constraints

Here is the facts first. In the game of bridge there are 4 players named North, South, East and West. All 52 cards are dealt with 13 cards to each player. There is a Honour ...
5
votes
4answers
246 views

Is it possible to shuffle a 2D matrix while preserving row AND column frequencies?

Suppose I have a 2D array like the following: GACTG AGATA TCCGA Each array element is taken from a small finite set (in my case, DNA nucleotides -- {A, C, G, T}). I would like to randomly shuffle ...
5
votes
4answers
1k views

Merging two lists in Haskell

Can't figure out how to merge two lists in the following way in Haskell: INPUT: [1,2,3,4,5] [11,12,13,14] OUTPUT: [1,11,2,12,3,13,4,14,5] This would work similar to shuffling a deck of cards. ...
5
votes
5answers
427 views

Does Repeating a Biased Random Shuffle Reduce the Bias?

I'd like to produce fast random shuffles repeatedly with minimal bias. It's known that the Fisher-Yates shuffle is unbiased as long as the underlying random number generator (RNG) is unbiased. To ...
5
votes
1answer
1k views

Is this C implementation of Fisher-Yates shuffle correct?

Here's a C implementation of Fisher-Yates that I want to use in a deck-shuffling routine. Am I doing this correctly (n = length of array)? Note: The do-while loop attempts to correct for the modulo ...
5
votes
5answers
234 views

How to make a controlled “shuffle” order?

I have a set of quiz game questions in a sql database (javascript and sqlite actually). The questions all have a difficulty level from 1 to 5, 5 being hardest. Here is a simplified visualization of ...
5
votes
2answers
826 views

python random.shuffle's randomness

Following is from python website, about random.shuffle(x[, random]) Shuffle the sequence x in place. The optional argument random is a 0-argument function returning a random float in [0.0, ...
5
votes
4answers
333 views

Collections.shuffle(List list)

What will prompt one to use this method? Update : I see the point now. I like the reason of Uri "Shuffling is not a trivial algorithm". That is quite true.
5
votes
3answers
215 views

How can I ensure that when I shuffle my puzzle I still end up with an even permutation?

I'm interested making an implementation of the 14-15 puzzle: I'm creating an array with the values 0 - 15 in increasing order: S = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 } Now, ...
5
votes
2answers
2k views

Java's Collections.shuffle is doing what?

I recently found myself needing to be sure my list wasn't in order. Hibernate was nice enough to return it in perfect order. Silly hibernate, not reading my mind. I looked at my Java API and it ...
5
votes
11answers
235 views

Is there an algorithm which prints out a shuffled list without actually modifing the list?

After reading this question I started to wonder: is it possible to have a shuffling algorithm which does not modify or copy the original list? To make it clear: Imagine you are given a list of ...
5
votes
4answers
523 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
2answers
797 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
146 views

Efficient calculation of nth item in a random permutation

Imagine I was able to shuffle all numbers between 0 and 2^32 using something like the Knuth shuffle and a seeded random number generator seeded with a key. Conceptually, I would need two arrays ...
4
votes
2answers
69 views

Most efficient array shuffler

How can I shuffle an array's values in the most efficient manner possible? Each element is just a string containing HTML.
4
votes
1answer
150 views

Lucene 2.9.2: How to show results in random order?

By default, Lucene returns the query results in the order of relevance (score). You can pass a sort field (or multiple), then the results get sorted by that field. I am looking now for a nice ...
4
votes
2answers
112 views

How to shuffle the values in a hash?

I have a hash of string IDs. What is the best way to shuffle the IDs? As an example, my hash assigns the following IDs: this => 0 is => 1 a => 2 test => 3 Now I'd like to randomly ...
4
votes
3answers
110 views

Shuffling a huge range of numbers using minimal storage

I've got a very large range/set of numbers, (1..1236401668096), that I would basically like to 'shuffle', i.e. randomly traverse without revisiting the same number. I will be running a Web service, ...
4
votes
4answers
105 views

Reordering numbers

I have numbers in range 1-62 I want to be able to "crypt" them, so that it's hard to guess they are generated in some order. So, it should be some mapping, for example 1->35 2->19 3->61 ... so that ...

1 2 3 4