2
votes
2answers
46 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
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. …
0
votes
2answers
100 views
Why does my PHP code not work?
Below is the code:
function swap(&$a, &$b)
{
list($a, $b) = array($b, $a);
}
for ($i=0; count($resultset);$i++)
{
for($j=1;$j<5;$j++)
{
$k = rand(1, 4);
…
0
votes
3answers
39 views
Can I choose some(not all) elements in an array and shuffle it in PHP?
Can I choose some elements in an array and shuffle it in PHP?
You know, when you use
shuffle(array)
, It shuffles all elements in an array, but I just want to shuffle some elements in an array …
4
votes
7answers
185 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 …
1
vote
11answers
344 views
oneliner scramble program
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 Sinterklaas and pick straws for …
1
vote
3answers
180 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 generation). I just want …
1
vote
7answers
240 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 board.
TIA
12
votes
7answers
694 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 = …
3
votes
1answer
224 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 …
0
votes
6answers
240 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_order, length);
// …
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[] …
1
vote
5answers
129 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:
Using the built-in Sort …
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 …
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 …
