4
votes
4answers
103 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
0
votes
2answers
102 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
191 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
348 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
188 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
253 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
3
votes
1answer
230 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);
// …
1
vote
5answers
132 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 …
13
votes
7answers
772 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
3answers
751 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 = …
0
votes
3answers
314 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!
1
vote
4answers
489 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 use a method to create …
