How do I shuffle the characters in a string (e.g. hello could be ehlol or lleoh or ...). I don't want to use the Collections.shuffle(...) method, is there anything simpler?
|
|
|||||||||||
|
|
I dont know anything simpler. But you can use the Math.rand() functionality to generate a random number within the range of the character's length without replace and that would give you a shuffled output
|
||||
|
|
|
Not great performance, but quite readable in my opinion:
|
|||
|
|
|
E.g.:
|
|||
|
|
Output: ahlol |
|||
|
|
|
You could iterate over all the characters, comparing each one with the next. Then if Math.rand() > 0.5 swap this character with the next, otherwise move on to the next character. |
|||
|
|
but you have to take care duplicated number generated by Math.rand() and it even more complicated than using Collections.shuffle() |
|||||||
|
|
Here's code that requires neither recursion, nor converting to a Collection.
|
|||
|
|