0
votes
2answers
92 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 …
0
votes
3answers
38 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 elem …
4
votes
7answers
173 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 C …
1
vote
11answers
341 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 an …
1
vote
3answers
169 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
220 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 …
12
votes
7answers
666 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 …
3
votes
1answer
217 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 …
0
votes
6answers
237 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 …
4
votes
2answers
325 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.
…
1
vote
5answers
125 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 …
5
votes
4answers
217 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, …
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 …
1
vote
4answers
476 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 …
3
votes
3answers
690 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 …
