Reputation: 6948
I can sort a int* array using stl, plain and simple like
std::sort(myarray, myarray + size);
Is there any equal simple way to randomize it?
thanks
Upvotes: 4
Views: 386
Reputation: 13109
If you want to generate new random content instead of shuffling the elements that are already there:
std::generate_n(myarray, size, &std::rand);
Upvotes: 7