Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
5answers
402 views

What shuffling algorithms exist besides Fisher-Yates and finding the “next permutation?”

Specifically in the domain of one-dimensional sets of items of the same type, such as a vector of integers. Say, for example, you had a vector of size 32,768 containing the sorted integers 0 through ...
3
votes
4answers
283 views

How can I shuffle a list without randomness, and guarantee that a portion of elements will eventually appear on one side?

Given a list of elements, does a shuffling algorithm exist that will guarantee that eventually a selected half portion will be on one side, and the remainder on the other? Example: { 4, 3, 10, 7, ...
2
votes
1answer
1k views

Scramble a Word using Java

I wanted to scramble a String, to make it unreadable and so came up with this method: public String scrambleWord(String start_word){ char[] wordarray = start_word.toCharArray(); char[] ...
2
votes
4answers
468 views

Best method of generating a number with 256 random bits?

What is the best method of generating a number with 256 random bits? Does concatenating random bytes work? byte[] data = new byte[32]; RNGCryptoServiceProvider rng = new RNGCryptoServiceProvider(); ...
1
vote
2answers
171 views

how to randomize an NSMutableArray [closed]

Possible Duplicate: iphone - nsarray/nsmutablearray - re-arrange in random order I have an NSMutableArray that contains 20 objects. Is there any way that I could randomize their order like ...
1
vote
4answers
247 views

Shuffle 2 php arrays in the same way

I have this for example: $array['one'][0] = 0; $array['one'][1] = 1; $array['one'][2] = 2; $array['one'][3] = 3; $array['two'][0] = 00; $array['two'][1] = 11; $array['two'][2] = 22; $array['two'][3] ...
1
vote
5answers
186 views

please help with my “shuffle” code in ruby

this is the question Shuffle. Now that you’ve finished your new sorting algorithm, how about the opposite? Write a shuffle method that takes an array and returns a totally shuffled ...
0
votes
1answer
153 views

Converting between SSE and NEON Intrinsics-Shuffling

I am trying to convert a code written in SSE3 intrinsics to NEON SIMD and am stuck because of a shuffle function.I have looked at the GCC Intrinsics ,ARM manuals and other forums but have not been ...
0
votes
1answer
212 views

How do i complete this question with 2-dimensional array in java?

Hey guys, im working through the Introduction to Programming in Java book and one of the exercises is this: Empirical shuffle check. Run computational experiments to check that our shuffling ...
0
votes
2answers
612 views

Why is fisher yates the most useful shuffling algorithm?

Would you say modern version of fisher yates is the most unbiased shuffling algorithm? How would you explain that each element in the array has a probability of 1/n being in its original spot?