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
|
|
|||
|
|
|
Modify a Fisher-Yates shuffle to do nothing on 10% of the indices in the array. This is java code that I'm posting (from Wikipedia) and modifying, but I think you can make the translation to C++, because this is more of an algorithms problem than a language problem.
|
||||||
|
|
|
You could try this: Assign a random number to each element of the vector. Shuffle the elements whose random number is in the smallest 10% of the random numbers you assigned: You could even imagine replacing that 10% in the vector with placeholders, then sort your 10% according to their random number, and insert them back into the vector where your placeholders are. |
||
|
|
|
|
one way may using , std::random_shuffle() , control % by controlling input range .... |
||
|
|
|
|
Why not perform N swaps of randomly selected positions, where N is determined by the percentage? So if I have 100 elements, a 10% shuffle will perform 10 swaps. Each swap randomly picks two elements in the array and switches them. |
||||||
|
|
|
How about writing your own random iterator and using random_shuffle, something like this: (Completely untested, just to get an idea)
|
|||
|
|
|
you can use the shuffle bag algorithm to select 10% of your array. Then use the normal shuffle on that selection. |
||
|
|
|
|
If you have SGI's
Not the most efficient, since it uses three "small" vectors, but avoids having to adapt the Fisher-Yates algorithm to operate on a subset of the vector. In practice you'd probably want this to be a function template operating on a pair of random-access iterators rather than a vector. I haven't done that because I think it would obfuscate the code a little, and you didn't ask for it. I'd also take a size instead of a proportion, leaving it up to the caller to decide how to round fractions. |
|||
|
|