...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::compute::prev_permutation — Permutation generating algorithm.
// In header: <boost/compute/algorithm/prev_permutation.hpp> template<typename InputIterator> bool prev_permutation(InputIterator first, InputIterator last, command_queue & queue = system::default_queue());
Transforms the range [first, last) into the previous permutation from the set of all permutations arranged in lexicographic order Space complexity: \Omega(1)
Parameters: |
|
||||||
Returns: |
Boolean value signifying if the first permutation was crossed and the range was reset |