random_shuffle
It randomly rearrange elements in range [first, last).
The function swaps the value of each element with some other randomly picked element. When provided, the function gen determines which element is picked in every case. Otherwise, the function uses some unspecified source of randomness.
#include <bits/stdc++.h>
using namespace std;
int randomfunc( int j)
{
return rand () % j;
}
int main()
{
srand (unsigned( time (0)));
vector< int > arr;
for ( int j = 1; j < 10; ++j)
arr.push_back(j);
random_shuffle(arr.begin(), arr.end());
random_shuffle(arr.begin(), arr.end(), randomfunc);
cout << "arr contains:" ;
for ( auto i = arr.begin(); i != arr.end(); ++i)
cout << ' ' << *i;
cout << endl;
return 0;
}
|
Output:
arr contains: 5 8 1 7 9 6 4 3 2
shuffle
Rearranges the elements in the range [first, last) randomly, using g as uniform random number generator.
The function swaps the value of each element with that of some other randomly picked element. The function determines the element picked by calling g().
#include <bits/stdc++.h>
using namespace std;
int main()
{
array< int , 5> s{ 1, 2, 3, 4, 5 };
unsigned seed = 0;
shuffle(s.begin(), s.end(), default_random_engine(seed));
cout << "shuffled elements are:" ;
for ( int & i : s)
cout << ' ' << i;
cout << endl;
return 0;
}
|
Output:
shuffled elements are: 3 1 5 4 2
What is the difference between shuffle and random_shuffle c++?
- The only difference is that random_shuffle uses rand() function to randomize the items, while the shuffle uses urng which is a better random generator, though with the particular overload of random_shuffle, we can get the same behavior (as with the shuffle).
- shuffle is an improvement over random_shuffle, and we should prefer using the formerfor better results.
- Example of Swapping Variables using both
random shuffle:
template (class RandomIt, class RandomFunc)
void random_shuffle(RandomIt first, RandomIt last, RandomFunc&& r)
{
typename iterator_traits::difference_type i, n;
n = last - first;
for (i = n-1; i > 0; --i) {
using std::swap;
swap(first[i], first[r(i+1)]);
}
}
Shuffle:
template void shuffle(RandomIt first, RandomIt last,
UniformRandomBitGenerator&& g)
{
typedef typename iterator_traits::difference_type diff_t;
typedef uniform_int_distribution distr_t;
typedef typename distr_t::param_type param_t;
distr_t D;
diff_t n = last - first;
for (diff_t i = n-1; i > 0; --i) {
using swap;
swap(first[i], first[D(g, param_t(0, i))]);
}
}
If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!