active questions tagged shuffle - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T06:07:41Z http://stackoverflow.com/feeds/tag/shuffle http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/641318/test-probabilistic-functions 5 Test Probabilistic Functions stimms 2009-03-13T02:59:00Z 2009-11-23T20:49:26Z <p>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. I can run the code a bunch of times and see if I have the same answer more than once. While collisions are unlikely for large arrays it is highly probable for small arrays (say two elements). </p> <p>How should I go about it? </p> http://stackoverflow.com/questions/1778223/why-does-my-php-code-not-work 0 Why does my PHP code not work? Steven 2009-11-22T08:59:37Z 2009-11-22T10:22:23Z <p>Below is the code:</p> <pre><code>function swap(&amp;$a, &amp;$b) { list($a, $b) = array($b, $a); } for ($i=0; count($resultset);$i++) { for($j=1;$j&lt;5;$j++) { $k = rand(1, 4); swap($resultset[$i]["option".$j],$resultset[$i]["option".$k]); } } </code></pre> <p>It is a two-dimensional array from a MySQL query, I want to shuffle the values whose keys are option1, option2, option3 and option4. But my code doesn't work. I can find the error by myself. Please suggest. Thanks in advance!</p> http://stackoverflow.com/questions/1775666/can-i-choose-somenot-all-elements-in-an-array-and-shuffle-it-in-php 0 Can I choose some(not all) elements in an array and shuffle it in PHP? Steven 2009-11-21T14:47:17Z 2009-11-22T00:33:44Z <p>Can I choose some elements in an array and shuffle it in PHP? You know, when you use</p> <pre><code>shuffle(array) </code></pre> <p>, It shuffles all elements in an array, but I just want to shuffle some elements in an array while keep other elements unchanged, how to do it?</p> http://stackoverflow.com/questions/1756333/what-is-the-best-list-implementation-for-large-lists-in-java 4 What is the best List implementation for Large lists in java rabbit 2009-11-18T14:22:52Z 2009-11-19T14:18:42Z <p>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 on this list. My question is, which list implementation (either java collections or apache collections) should be used. My gut feeling is ArrayList can well be used here. All thoughts are appreciated. Thanks!</p> <p>Thanks for the inputs. I think I am sticking to the ArrayList. I am currently using the ArrayList constructor with the initialCapacity param and I pass the size of the list. So if the original list is 100000, I create this new list with new ArrayList(100000); Hence I think I don't have the create an array and do an asList since there won't be any resizing. Also, most of the apache collections Lists like GrowthList &amp; LazyList do not implement RandomAccess. This for sure would slow down the shuffle (as per javadocs). FastArrayList does implement RandomAccess but apache has a note for this class saying "This class is not cross-platform. Using it may cause unexpected failures on some architectures".</p> http://stackoverflow.com/questions/1735561/oneliner-scramble-program 1 oneliner scramble program Paul 2009-11-14T20:52:27Z 2009-11-16T04:28:35Z <p>It's that time of year again that programmers want to shuffle a list such that no element resides on its original position (at least in the Netherlands, we celebrate <em>Sinterklaas</em> and pick straws for deciding who writes who a poem). Does anyone have a nice Python <strong>single statement</strong> for that?</p> <p>So, input example: <code>range(10)</code></p> <p>Output example: <code>[2,8,4,1,3,7,5,9,6,0]</code></p> <p>Wrong output would be <code>[2,8,4,1,3,5,7,9,6,0]</code> because the <code>5</code> is at its original position. This would mean that person 5 must write a poem to himself and that is less fun.</p> <p><strong>edit</strong> Many people repeat the assignment just as long as needed to <em>get lucky</em> and find that in fact the solution is satisfactory. This is a bad approach as in theory this can take infinitely long. The better approach is indeed suggested by Bart, but I can't get that into a oneliner for one reason or another...</p> <p><strong>edit</strong> By oneliner, I mean <em>single statement</em>. As it appears, Python is also able to compress multiple statements on a single line. I didn't know that. There are currently very nice solutions only using the semicolon to mimic multiline behaviour on a single line. Hence: "can you do it in a single statement?"</p> http://stackoverflow.com/questions/1685339/verify-knuth-shuffle-algorithm-is-as-unbiased-as-possible 1 Verify Knuth shuffle algorithm is as unbiased as possible Adam Maras 2009-11-06T04:07:38Z 2009-11-06T09:37:19Z <p>I'm implementing a <a href="http://en.wikipedia.org/wiki/Fisher%E2%80%93Yates%5Fshuffle" rel="nofollow">Knuth shuffle</a> for a C++ project I'm working on. I'm trying to get the most unbiased results from my shuffle (and I'm not an expert on (pseudo)random number generation). I just want to make sure this is the most unbiased shuffle implementation.</p> <p><code>draw_t</code> is a byte type (<code>typedef</code>'d to <code>unsigned char</code>). <code>items</code> is the count of items in the list. I've included the code for <code>random::get( draw_t max )</code> below.</p> <pre><code>for( draw_t pull_index = (items - 1); pull_index &gt; 1; pull_index-- ) { draw_t push_index = random::get( pull_index ); draw_t push_item = this-&gt;_list[push_index]; draw_t pull_item = this-&gt;_list[pull_index]; this-&gt;_list[push_index] = pull_item; this-&gt;_list[pull_index] = push_item; } </code></pre> <p>The random function I'm using has been modified to eliminate <a href="http://en.wikipedia.org/wiki/Shuffling#Modulo%5Fbias" rel="nofollow">modulo bias</a>. <code>RAND_MAX</code> is assigned to <code>random::_internal_max</code>.</p> <pre><code>draw_t random::get( draw_t max ) { if( random::_is_seeded == false ) { random::seed( ); } int rand_value = random::_internal_max; int max_rand_value = random::_internal_max - ( max - ( random::_internal_max % max ) ); do { rand_value = ::rand( ); } while( rand_value &gt;= max_rand_value ); return static_cast&lt; draw_t &gt;( rand_value % max ); } </code></pre> http://stackoverflow.com/questions/1667625/c-vector-random-shuffle-part-of-it 1 c++ vector random shuffle part of it Jeremiah 2009-11-03T14:23:24Z 2009-11-04T17:16:06Z <p>Whats the best way to shuffle a certain percentage of elements in a vector.</p> <p>Say I want 10% or 90% of the vector shuffled. Not necessarily the first 10% but just 10% across the board.</p> <p>TIA</p> http://stackoverflow.com/questions/1287567/c-is-using-random-and-orderby-a-good-shuffle-algorithm 12 C#: Is using Random and OrderBy a good shuffle algorithm? Svish 2009-08-17T12:00:11Z 2009-11-03T15:58:10Z <p>I have read <a href="http://www.codinghorror.com/blog/archives/001015.html" rel="nofollow">an article</a> about various shuffle algorithms over at <a href="http://www.codinghorror.com/" rel="nofollow">Coding Horror</a>. I have seen that somewhere people have done this to shuffle a list:</p> <pre><code>var r = new Random(); var shuffled = ordered.OrderBy(x =&gt; r.Next()); </code></pre> <p>Is this a good shuffle algorithm? How does it work exactly? Is it an acceptable way of doing this?</p> http://stackoverflow.com/questions/1566150/how-does-this-matlab-code-work-probabilities-and-random-sequences 3 How does this MATLAB code work? (probabilities and random sequences) The Wicked Flea 2009-10-14T13:13:56Z 2009-10-15T04:50:17Z <p>I saw this code in <a href="http://kaioa.com/node/53#comment-477" rel="nofollow">a comment</a> for the article "<a href="http://kaioa.com/node/53" rel="nofollow">Never-ending Shuffled Sequence</a>". I understand the basic premise, but I don't know how it works. <em>The biggest explanation I need is of the first two lines of the while loop.</em></p> <p>(Because it is written in MATLAB I can only guess at how this code functions.)</p> <pre><code>probabilities = [1 1 1 1 1 1]; unrandomness = 1; while true cumprob = cumsum(probabilities) ./ sum(probabilities); roll = find(cumprob &gt;= rand, 1) probabilities = probabilities + unrandomness; probabilities(roll) = probabilities(roll) - 6*unrandomness; if min(probabilities) &lt; 0 probabilities = probabilities - min(probabilities); end end </code></pre> http://stackoverflow.com/questions/1484538/how-to-permute-array-into-a-given-order-with-o1-auxiliary-space 0 How to permute array into a given order with O(1) auxiliary space? dehmann 2009-09-27T21:33:27Z 2009-09-28T08:07:12Z <p>How do I implement the following <code>OrderElements</code> function? </p> <pre><code>char chars[] = {'a', 'b', 'c', 'd', 'e'}; int want_order[] = {2, 4, 3, 0, 1}; int length = 5; OrderElements(chars, want_order, length); // chars now contains: c, e, d, a, b </code></pre> <p>It's easy when you can use linear extra space, but can it be done with only constant extra space, i.e., directly sorting the <code>chars</code> elements in-place?</p> <p>P.S.: This was not an exam question; I actually need this function.</p> <p><strong>CLARIFICATION:</strong> There seems to be a misunderstanding about the desired final order of elements. The resulting array in the example should have the following elements, referring to the original <code>chars</code> array:</p> <pre><code>{chars[2], chars[4], chars[3], chars[0], chars[1]} </code></pre> <p>which is</p> <pre><code>{'c', 'e', 'd', 'a', 'b'}. </code></pre> http://stackoverflow.com/questions/180979/using-collections-api-to-shuffle 4 Using Collections API to Shuffle outsyncof 2008-10-08T00:45:15Z 2009-09-25T15:45:48Z <p>I am getting very frustrated because I cannot seem to figure out why Collections shuffling is not working properly.</p> <p>Lets say that I am trying to shuffle the 'randomizer' array. </p> <pre><code> int[] randomizer = new int[] {200,300,212,111,6,2332}; Collections.shuffle(Arrays.asList(randomizer)); </code></pre> <p>For some reason the elements stay sorted exactly the same whether or not I call the shuffle method. Any ideas? Thanks in advance.</p> http://stackoverflow.com/questions/1405867/sorting-tlistbox-highs-and-lows 1 Sorting TListbox -- Highs and Lows george 2009-09-10T15:07:29Z 2009-09-10T17:20:36Z <p>Okay, I have a TListBox that on occasion may be called upon to show 43,000 lines!</p> <p>I know, this hardly ever makes any sense, but there it is.</p> <p>Now here's the current problem:</p> <p>Using the built-in Sort method, with its Compare callback function, takes nearly forever, like many minutes.</p> <p>So I extract the strings out of the listbox into a plain old dynamic array of ShortStrintgs, do a QuickSort() on that, and that takes about three seconds. Whopee I think!</p> <p>Doing a bit of thinking, I see that QuickSort is moving all those strings around, which there is no need for, so I cange the code to just move around pointers or indices to the strings, and voila, the sort is much faster again, takin under a second to sort 43,000 items. Big win, yes?</p> <p>BUT, now if I do a LB.Items.Add() or LB.Items.Assign to move the sorted strings into the listbox, THAT takes like 30 seconds! Even with BEgin/EndUpdate happening. If I trace through the code I see a whole lot of stuff going on with delete() Insert() INsertObject() and Windows messages flying for no good reason.</p> <p>A moment's though reveals that I HAVE all the strings in the LB.TStrings, I just need them shuffled around ala my QuickSorted() array. That should be trivial, just moving some pointers. </p> <p>But I don't see any visible way to set the raw TStringList pointers. No, Exchange() is really really slow. </p> <p>Any ideas how I can get to the TString string pointers? This should be trivial but I don't see it.</p> <p>Thanks,</p> <p>George</p> http://stackoverflow.com/questions/1297224/how-do-i-shuffle-two-arrays-in-exactly-the-same-way-in-perl 5 How do I shuffle two arrays in exactly the same way in Perl? Abdel 2009-08-19T00:06:41Z 2009-08-19T13:51:31Z <p>Does anyone know how to shuffle two arrays randomly in exactly the same way in Perl? For example, say I have these two arrays:</p> <p>Before shuffling: array 1: 1, 2, 3, 4, 5 array 2: a, b, c, d, e</p> <p>After shuffling: array 1: 2, 4, 5, 3, 1 array 2: b, d, e, c, a</p> <p>So every element in each array is bound to its equivalent element.</p> http://stackoverflow.com/questions/56648/whats-the-best-way-to-shuffle-an-nsmutablearray 4 What's the Best Way to Shuffle an NSMutableArray? Kristopher Johnson 2008-09-11T14:16:43Z 2009-08-19T10:39:21Z <p>If you have an NSMutableArray, how do you shuffle the elements randomly?</p> <p>(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 way.)</p> http://stackoverflow.com/questions/1150646/card-shuffling-in-c-2008 1 Card Shuffling in C# 2008 Jeff 2009-07-19T19:20:27Z 2009-08-13T02:20:10Z <p>I am trying to write a code for a project that lists the contents of a deck of cards, asks how much times the person wants to shuffle the deck, and then shuffles them. It has to use a method to create two random integers using the System.Random class. </p> <p>These are my classes:</p> <p>Program.cs:</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication3 { class Program { static void Main(string[] args) { Deck mydeck = new Deck(); foreach (Card c in mydeck.Cards) { Console.WriteLine(c); } Console.WriteLine("How Many Times Do You Want To Shuffle?"); } } } </code></pre> <p>Deck.cs:</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication3 { class Deck { Card[] cards = new Card[52]; string[] numbers = new string[] { "2", "3", "4", "5", "6", "7", "8", "9", "J", "Q", "K" }; public Deck() { int i = 0; foreach(string s in numbers) { cards[i] = new Card(Suits.Clubs, s); i++; } foreach (string s in numbers) { cards[i] = new Card(Suits.Spades, s); i++; } foreach (string s in numbers) { cards[i] = new Card(Suits.Hearts, s); i++; } foreach (string s in numbers) { cards[i] = new Card(Suits.Diamonds, s); i++; } } public Card[] Cards { get { return cards; } } } } </code></pre> <p>classes.cs:</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication3 { enum Suits { Hearts, Diamonds, Spades, Clubs } } </code></pre> <p>Card.cs:</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication3 { class Card { protected Suits suit; protected string cardvalue; public Card() { } public Card(Suits suit2, string cardvalue2) { suit = suit2; cardvalue = cardvalue2; } public override string ToString() { return string.Format("{0} of {1}", cardvalue, suit); } } } </code></pre> <p>Please tell me how to make the cards shuffle as much as the person wants and then list the shuffled cards. Sorry about the formatting im new to this site.</p> http://stackoverflow.com/questions/1259223/how-to-use-java-collections-shuffle-on-a-scala-array 3 How to use Java Collections.shuffle() on a Scala array? Jesper 2009-08-11T09:11:51Z 2009-08-11T16:45:51Z <p>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:</p> <pre><code>String[] array = new String[]{"a", "b", "c"}; // Shuffle the array; works because the list returned by Arrays.asList() is backed by the array Collections.shuffle(Arrays.asList(array)); </code></pre> <p>I tried using this on a Scala array, but the Scala interpreter responds with a lengthy answer:</p> <pre><code>scala&gt; val a = Array("a", "b", "c") a: Array[java.lang.String] = Array(a, b, c) scala&gt; java.util.Collections.shuffle(java.util.Arrays.asList(a)) &lt;console&gt;:6: warning: I'm seeing an array passed into a Java vararg. I assume that the elements of this array should be passed as individual arguments to the vararg. Therefore I follow the array with a `: _*', to mark it as a vararg argument. If that's not what you want, compile this file with option -Xno-varargs-conversion. java.util.Collections.shuffle(java.util.Arrays.asList(a)) ^ &lt;console&gt;:6: error: type mismatch; found : Array[java.lang.String] required: Seq[Array[java.lang.String]] java.util.Collections.shuffle(java.util.Arrays.asList(a)) ^ </code></pre> <p>What exactly is happening here? I don't want to compile my code with a special flag (-Xno-varargs-conversion), if that is the solution at all, just because of this.</p> <p>So, how do I use Java's Collections.shuffle() on a Scala array?</p> <p>I wrote my own shuffle method in Scala in the meantime:</p> <pre><code>// Fisher-Yates shuffle, see: http://en.wikipedia.org/wiki/Fisher–Yates_shuffle def shuffle[T](array: Array[T]): Array[T] = { val rnd = new java.util.Random for (n &lt;- Iterator.range(array.length - 1, 0, -1)) { val k = rnd.nextInt(n + 1) val t = array(k); array(k) = array(n); array(n) = t } return array } </code></pre> <p>It shuffles the array in place, and returns the array itself for convenience.</p> http://stackoverflow.com/questions/1218155/random-number-but-dont-repeat 0 Random Number but Don't Repeat Craig 2009-08-02T04:29:21Z 2009-08-03T14:04:43Z <p>Hi,</p> <p>I would like to generate a random number less than 50, but once that number has been generated I would like it so that it cannot be generated again.</p> <p>Thanks for the help!</p> http://stackoverflow.com/questions/859253/why-does-this-simple-shuffle-algorithm-produce-biased-results-what-is-a-simple 6 why does this simple shuffle algorithm produce biased results? what is a simple reason? Jian Lin 2009-05-13T17:18:26Z 2009-06-22T19:09:19Z <p>it seems that this simple shuffle algorithm will produce biased results:</p> <pre><code># suppose $arr is filled with 1 to 52 for ($i &lt; 0; $i &lt; 52; $i++) { $j = rand(0, 51); # swap the items $tmp = $arr[j]; $arr[j] = $arr[i]; $arr[i] = $tmp; } </code></pre> <p>you can try it... instead of using 52, use 3 (suppose only 3 cards are used), and run it 10,000 times and tally up the results, you will see that the results are skewed towards certain patterns...</p> <p>the question is... what is a simple explanation that it will happen? </p> <p>the correct solution is to use something like</p> <pre><code>for ($i &lt; 0; $i &lt; 51; $i++) { # last card need not swap $j = rand($i, 51); # don't touch the cards that already "settled" # swap the items $tmp = $arr[j]; $arr[j] = $arr[i]; $arr[i] = $tmp; } </code></pre> <p>but the question is... why the first method, seemingly also totally random, will make the results biased?</p> <p><strong>Update 1:</strong> thanks for folks here pointing out that it needs to be rand($i, 51) for it to shuffle correctly.</p> http://stackoverflow.com/questions/976882/shuffling-a-list-of-objects-in-python 3 Shuffling a list of objects in python utdiscant 2009-06-10T16:56:59Z 2009-06-10T17:08:50Z <p>I have a list of objects in python and I want to shuffle them. I thought I could use the <code>random.shuffle</code> method, but this seems to fail when the list is of objects. Is there a method for shuffling object or another way around this?</p> <pre><code>import random class a: foo = "bar" a1 = a() a2 = a() b = [a1,a2] print random.shuffle(b) </code></pre> <p>This will fail</p> http://stackoverflow.com/questions/962802/is-it-correct-to-use-javascript-array-sort-method-for-shuffling 3 Is it correct to use JavaScript Array.sort() method for shuffling? Rene Saarsoo 2009-06-07T20:56:09Z 2009-06-08T09:59:56Z <p>I was helping somebody out with his JavaScript code and my eyes were caught by a section that looked like that:</p> <pre><code>function randOrd(){ return (Math.round(Math.random())-0.5); } coords.sort(randOrd); alert(coords); </code></pre> <p>My first though was: <strong>hey, this can't possibly work!</strong> But then I did some experimenting and found that it indeed at least seems to provide nicely randomized results.</p> <p>Then I did some web search and almost at the top found an <a href="http://javascript.about.com/library/blsort2.htm" rel="nofollow">article</a> from which this code was most ceartanly copied. Looked like a pretty respectable site and author...</p> <p>But my gut feeling tells me, that this must be wrong. Especially as the sorting algorithm is not specified by ECMA standard. I think different sorting algoritms will result in different non-uniform shuffles. Some sorting algorithms may probably even loop infinitely...</p> <p>But what do you think?</p> <p>And as another question... how would I now go and measure how random the results of this shuffling tehnique are?</p> <p><strong>update:</strong> I did some measurements and posted the results below as one of the answers.</p> http://stackoverflow.com/questions/624538/bit-twiddling-reorder 3 Bit twiddling reorder BCS 2009-03-08T23:24:05Z 2009-05-21T19:00:11Z <p>I need to do an arbitrary reorder of a 7 bit value (Yes I know I should be using a table) and am wondering if there are any bit hacks to do this.</p> <p>Example:</p> <pre><code>// &lt;b0, b1, b2, b3, b4, b5, b6&gt; -&gt; &lt;b3, b2, b4, b1, b5, b0, b6&gt; // the naive way out = (0x020 &amp; In) &lt;&lt; 5 | (0x008 &amp; In) &lt;&lt; 2 | (0x040 &amp; In) | (0x012 &amp; In) &gt;&gt; 1 | (0x004 &amp; In) &gt;&gt; 2 | (0x001 &amp; In) &gt;&gt; 3; // 6 ANDs, 5 ORs, 5 shifts = 16 ops </code></pre> <p><hr /></p> <p><em>edit:</em> I was thinking of something along the lines of <a href="http://blogs.msdn.com/devdev/archive/2005/12/12/502980.aspx" rel="nofollow">this</a></p> <p>Just for kicks and because I was AFTK I'm trying a brute force search for solutions of the form:</p> <pre><code>((In * C1) &gt;&gt; C2) &amp; 0x7f </code></pre> <p>No solutions found.</p> http://stackoverflow.com/questions/886237/how-can-i-randomize-the-lines-in-a-file-using-a-standard-tools-on-redhat-linux 0 How can I randomize the lines in a file using a standard tools on Redhat Linux Stuart Woodward 2009-05-20T05:12:01Z 2009-05-20T16:20:04Z <p>How can I randomize the lines in a file using a standard tools on Redhat Linux?</p> <p>I don't have the "shuf" command, so I am looking for something like a perl or awk one liner that accomplishes the same task.</p> http://stackoverflow.com/questions/813935/randomizing-elements-in-an-array 2 Randomizing elements in an array? b. e. hollenbeck 2009-05-02T01:34:22Z 2009-05-02T06:45:00Z <p>I've created a site for an artist friend of mine, and she wants the layout to stay the same, but she also wants new paintings she'd produced to be mixed into the current layout. So I have 12 thumbnails (thumb1 - thumb12) on the main gallery page and 18 images (img1 - img18) to place.</p> <p>The approach I thought of was to create an array of all the images, randomize it, then simply scrape off the first 12 and load them into the thumb slots. Another approach would be to select 12 images randomly from the array. In the first case, I can't find a way to randomize the elements of an array. In the latter case, I can't wrap my brain around how to keep images from loading more than once, other than using a second array, which seems very inefficient and scary.</p> <p>I'm doing all of this in Javascript, by the by.</p> http://stackoverflow.com/questions/557911/shuffle-using-icomparer 6 Shuffle using IComparer Joel Coehoorn 2009-02-17T17:38:48Z 2009-02-18T15:46:43Z <p>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" option. Based on the result of their selection I just want to substitute in an IComparer instance for my sort. What would the IComparer look like?</p> <p>Google brings up a plethora of flawed results that all take this form:</p> <pre><code>public class NaiveRandomizer&lt;T&gt; : IComparer&lt;T&gt; { private static Random rand = new Random(); public int Compare(T x, T y) { return (x.Equals(y))?0:rand.Next(-1, 2); } } </code></pre> <p>However, that implementation is biased and will even throw an exception in some circumstances. The bias can be demonstrated with the following code:</p> <pre><code>void Test() { Console.WriteLine("NaiveRandomizer Test:"); var data = new List&lt;int&gt;() {1,2,3}; var sortCounts = new Dictionary&lt;string, int&gt;(6); var randomly = new NaiveRandomizer&lt;int&gt;(); for (int i=0;i&lt;10000;i++) { //always start with same list, in _the same order_. var dataCopy = new List&lt;int&gt;(data); dataCopy.Sort(randomly); var key = WriteList(dataCopy); if (sortCounts.ContainsKey(key)) sortCounts[key]++; else sortCounts.Add(key, 1); } foreach (KeyValuePair&lt;string, int&gt; item in sortCounts) Console.WriteLine(item.Key + "\t" + item.Value); } string WriteList&lt;T&gt;(List&lt;T&gt; list) { string delim = ""; string result = ""; foreach(T item in list) { result += delim + item.ToString(); delim = ", "; } return result; } </code></pre> <p>So how could you implement a random <code>IComparer&lt;T&gt;</code> that solved those issues? It is allowed to require each call to <code>.Sort()</code> to use a separate IComparer instance, as I don't see any other way to do this: items <em>must</em> be compared using some other, truly random value, but that value <em>must</em> also be consistent for an item within a given sort operation.</p> <p>I have a start <a href="http://stackoverflow.com/questions/554587/is-there-an-easy-way-to-randomize-a-list-in-vb-net/554652#554652">here</a>, but it was posted in haste, is <em>extremely</em> slow, and doesn't even return all possible sorts (testing shows that it does at least eliminate bias, if you don't count the missing options). I don't expect O(n) performance like Fisher-Yates, but I do want something reasonable,a and I do expect it to show all possible sorts. Unfortunately, that link is the current accepted answer for it's question and so I'm hoping to be able to replace it with something a little better.</p> <p>If nothing else, I want this to be a magnet for all those google queries looking for an IComparable solution- that they'll end up here instead of somewhere else telling them to use the incorrect version.</p> http://stackoverflow.com/questions/552731/c-good-best-implementation-of-swap-method 3 C#: Good/Best implementation of Swap method Svish 2009-02-16T09:29:23Z 2009-02-16T09:59:21Z <p>I read this <a href="http://www.codinghorror.com/blog/archives/001015.html" rel="nofollow">post about card shuffling</a> 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 a <code>T[]</code> and for a <code>List&lt;T&gt;</code>. How would you best implement a method that swaps two items in those two?</p> <pre><code>Swap(ref cards[i], ref cards[n]); // How is Swap implemented? </code></pre> http://stackoverflow.com/questions/464476/generating-shuffled-range-using-a-prng-rather-than-shuffling 5 Generating shuffled range using a PRNG rather than shuffling Barry Kelly 2009-01-21T08:49:04Z 2009-02-05T12:42:19Z <p>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?</p> <p>Assume n may be large, e.g. in the many millions, so a requirement to potentially produce every possible permutation is not required, not least because it's infeasible (the seed value space would need to be huge). This is also the reason for a requirement of constant space. (So, I'm specifically not looking for an array-shuffling algorithm, as that requires that the range is stored in an array of length n, and so would use linear space.)</p> <p>I'm aware of <a href="http://stackoverflow.com/questions/162606/iterating-shuffled-0-n-without-arrays">question 162606</a>, but it doesn't present an answer to this particular question - the mappings from permutation indexes to permutations given in that question would require a huge seed value space.</p> <p>Ideally, it would act like a <a href="http://en.wikipedia.org/wiki/Linear_congruential_generator" rel="nofollow">LCG</a> with a period and range of <code>n</code>, but the art of selecting <code>a</code> and <code>c</code> for an LCG is subtle. Simply satisfying the constraints for <code>a</code> and <code>c</code> in a full period LCG may satisfy my requirements, but I am wondering if there are any better ideas out there.</p> http://stackoverflow.com/questions/472662/random-numbers 2 Random numbers Jason Punyon 2009-01-23T12:02:37Z 2009-01-23T13:19:00Z <p>While thinking about <a href="http://stackoverflow.com/questions/472013/generate-a-series-of-random-numbers-that-add-up-to-n-in-c#472072">this</a> question and conversing with the participants, the idea came up that shuffling a finite set of clearly biased random numbers makes them random because you don't know the order in which they were chosen. Is this true and if so can someone point to some resources? </p> <p>EDIT: I thnk I might have been a little unclear. Suppose a bad random numbers generator. Take n values. These are biased(the rng is bad). Is there a way through shuffling to make the output of the rng over multiple trials statistically match the output of a known good rng?</p> http://stackoverflow.com/questions/467244/java-knuth-shuffle-on-a-stack 1 Java: Knuth shuffle on a Stack? Logan Serman 2009-01-21T22:14:04Z 2009-01-21T23:47:46Z <p>Hi,</p> <p>For a programming class I am creating a blackjack program for the first homework assignment. The professor has given us a sample Card class, which includes the method to add them to a deck. For her deck, she uses an ArrayList, which you can easily Knuth Shuffle with the Collections.shuffle() method.</p> <p>That method does not work for Stacks though (obviously), but I think a Stack structure would work best for this program because you may pop and push cards into and out of the deck.</p> <p>Is there a way to apply the Knuth shuffle to a Stack data structure?</p> http://stackoverflow.com/questions/375351/most-efficient-way-to-randomly-sort-shuffle-a-list-of-integers-in-c 5 Most efficient way to randomly "sort" (Shuffle) a list of integers in C# Carl 2008-12-17T17:34:00Z 2008-12-17T20:16:12Z <p>I need to randomly 'sort' a list of integers (0-1999) in the most efficient way possible. Any ideas?</p> <p>Currently, I am doing something like this:</p> <pre><code>bool[] bIndexSet = new bool[iItemCount]; for (int iCurIndex = 0; iCurIndex &lt; iItemCount; iCurIndex++) { int iSwapIndex = random.Next(iItemCount); if (!bIndexSet[iSwapIndex] &amp;&amp; iSwapIndex != iCurIndex) { int iTemp = values[iSwapIndex]; values[iSwapIndex] = values[iCurIndex]; values[iCurIndex] = values[iSwapIndex]; bIndexSet[iCurIndex] = true; bIndexSet[iSwapIndex] = true; } } </code></pre> http://stackoverflow.com/questions/358307/shuffle-a-list-with-duplicates-to-avoid-identical-elements-being-next-to-each-o 0 Shuffle a list (with duplicates) to avoid identical elements being next to each other Graphain 2008-12-11T02:43:14Z 2008-12-11T09:58:53Z <p>Hi,</p> <p>I am wondering if there is a "best" way to shuffle a list of elements that contains duplicates such that the case where array[i] == array[i+1] is avoided as much as possible.</p> <p>I am working on a weighted advertising display (I can adjust the number of displays per rotation for any given advertiser) and would like to avoid the same advertister appearing twice in a row.</p>