Tagged Questions

1
vote
3answers
140 views

Verify Knuth shuffle algorithm is as unbiased as possible

I'm implementing a Knuth shuffle 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 gener …
1
vote
7answers
169 views

c++ vector random shuffle part of it

Whats the best way to shuffle a certain percentage of elements in a vector. Say I want 10% or 90% of the vector shuffled. Not necessarily the first 10% but just 10% across the boa …
3
votes
1answer
168 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 t …
11
votes
7answers
592 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 shuffl …
0
votes
6answers
231 views

How to permute array into a given order with O(1) auxiliary space?

How do I implement the following OrderElements function? char chars[] = {'a', 'b', 'c', 'd', 'e'}; int want_order[] = {2, 4, 3, 0, 1}; int length = 5; OrderElements(chars, want_o …
5
votes
4answers
211 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, …
1
vote
5answers
119 views

Sorting TListbox — Highs and Lows

Okay, I have a TListBox that on occasion may be called upon to show 43,000 lines! I know, this hardly ever makes any sense, but there it is. Now here's the current problem: Usi …
3
votes
3answers
578 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 …
6
votes
11answers
717 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 …
1
vote
4answers
453 views

Card Shuffling in C# 2008

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 us …
0
votes
3answers
285 views

Random Number but Don’t Repeat

Hi, 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. Thanks for the help!
3
votes
6answers
967 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); } coo …
3
votes
2answers
422 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 metho …
4
votes
2answers
319 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. …
4
votes
4answers
1k 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 …

1 2 next
15 30 50 per page