Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

PrevUpHomeNext

Function template random_shuffle

boost::compute::random_shuffle

Synopsis

// In header: <boost/compute/algorithm/random_shuffle.hpp>


template<typename Iterator> 
  void random_shuffle(Iterator first, Iterator last, 
                      command_queue & queue = system::default_queue());

Description

Randomly shuffles the elements in the range [first, last).

Space complexity: \Omega(2n)

See Also:

scatter()


PrevUpHomeNext