mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
add C++14 constexpr set/heap/permutation algorithms
This commit is contained in:
parent
ecccb58042
commit
098dd1721e
13 changed files with 649 additions and 11 deletions
38
sprout/algorithm/cxx14/push_heap.hpp
Normal file
38
sprout/algorithm/cxx14/push_heap.hpp
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*=============================================================================
|
||||
Copyright (c) 2011-2014 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_CXX14_PUSH_HEAP_HPP
|
||||
#define SPROUT_ALGORITHM_CXX14_PUSH_HEAP_HPP
|
||||
|
||||
#include <iterator>
|
||||
#include <type_traits>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/algorithm/cxx14/detail/heap_tool.hpp>
|
||||
#include HDR_FUNCTIONAL_SSCRISK_CEL_OR_SPROUT
|
||||
|
||||
namespace sprout {
|
||||
//
|
||||
// 25.4.6.1 push_heap
|
||||
//
|
||||
template<typename RandomAccessIterator, typename Compare>
|
||||
inline SPROUT_CXX14_CONSTEXPR void
|
||||
push_heap(RandomAccessIterator first, RandomAccessIterator last, Compare comp) {
|
||||
typedef typename std::add_lvalue_reference<Compare>::type compare_ref;
|
||||
sprout::detail::push_heap_back<compare_ref>(first, last, comp, last - first);
|
||||
}
|
||||
|
||||
template<typename RandomAccessIterator>
|
||||
inline SPROUT_CXX14_CONSTEXPR void
|
||||
push_heap(RandomAccessIterator first, RandomAccessIterator last) {
|
||||
sprout::push_heap(
|
||||
first, last,
|
||||
NS_SSCRISK_CEL_OR_SPROUT::less<typename std::iterator_traits<RandomAccessIterator>::value_type>()
|
||||
);
|
||||
}
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_ALGORITHM_CXX14_PUSH_HEAP_HPP
|
Loading…
Add table
Add a link
Reference in a new issue