What Is The New std::sample Algorithm In C++ 17?
January 11, 2024
The C++ 17 standard bring us a lot of useful methods, templates and algorithms. One of the great algorithms is std::sample defined in the <algorithm> header that samples at most n elements uniformly from a given range. In this post, we explain the std::sample algorithm and how we can use it with an mt19937 random generator.
What is the std::sample algorithm in C++ 17 and beyond?
The…