std::experimental::shuffle
From cppreference.com
< cpp | experimental
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Experimental
Filesystem library (filesystem TS)
Library fundamentals (library fundamentals TS)
Library fundamentals 2 (library fundamentals TS v2)
Library fundamentals 3 (library fundamentals TS v3)
Extensions for parallelism (parallelism TS)
Extensions for parallelism 2 (parallelism TS v2)
Extensions for concurrency (concurrency TS)
Extensions for concurrency 2 (concurrency TS v2)
Concepts (concepts TS)
Ranges (ranges TS)
Reflection (reflection TS)
Mathematical special functions (special functions TR)
Defined in header
<experimental/algorithm>
template< class RandomIt >
void shuffle( RandomIt first, RandomIt last );
(library fundamentals TS v2)
void shuffle( RandomIt first, RandomIt last );
Reorders the elements in the given range [
first,
last)
such that each possible permutation of those elements has equal probability of appearance, using the per-thread random number engine as the random number generator.
[edit] Parameters
first, last
-
the range of elements to shuffle randomly
[edit] Return value
(none)
[edit] Complexity
Linear in the distance between first and last.
[edit] Example
Run this code
#include <experimental/algorithm> #include <iostream> #include <string> int main() { std::string sample{"ABCDEF"}; for (int i = 0; i != 4; ++i) { std::experimental::shuffle(sample.begin(), sample.end()); std::cout << sample << '\n'; } }
Possible output:
DACBFE CDFBAE BDCAFE BAFCED