mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
fix: math functions (support for inferior C++14 standard)
add C++14 constexpr modifying algorithms
This commit is contained in:
parent
58cff54e0d
commit
c58c9cc0fc
106 changed files with 3465 additions and 2144 deletions
30
sprout/algorithm/random_shuffle.hpp
Normal file
30
sprout/algorithm/random_shuffle.hpp
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*=============================================================================
|
||||
Copyright (c) 2011-2013 Bolero MURAKAMI
|
||||
https://github.com/bolero-MURAKAMI/Sprout
|
||||
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
=============================================================================*/
|
||||
#ifndef SPROUT_ALGORITHM_RANDOM_SHUFFLE_HPP
|
||||
#define SPROUT_ALGORITHM_RANDOM_SHUFFLE_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/algorithm/iter_swap.hpp>
|
||||
|
||||
namespace sprout {
|
||||
//
|
||||
// 25.3.12 Random shuffle
|
||||
//
|
||||
template<typename RandomAccessIterator, typename RandomNumberGenerator>
|
||||
inline SPROUT_CXX14_CONSTEXPR void
|
||||
random_shuffle(RandomAccessIterator first, RandomAccessIterator last, RandomNumberGenerator&& rand) {
|
||||
if (first == last) {
|
||||
return;
|
||||
}
|
||||
for (auto it = first + 1; it != last; ++it) {
|
||||
sprout::iter_swap(it, first + rand(it - first + 1));
|
||||
}
|
||||
}
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_ALGORITHM_RANDOM_SHUFFLE_HPP
|
Loading…
Add table
Add a link
Reference in a new issue