2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2011-09-01 02:48:32 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_FIXED_MAKE_PARTIAL_HEAP_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIXED_MAKE_PARTIAL_HEAP_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
2012-05-21 16:06:13 +00:00
|
|
|
#include <sprout/iterator/operation.hpp>
|
2011-09-03 13:26:26 +00:00
|
|
|
#include <sprout/algorithm/fixed/result_of.hpp>
|
2011-09-01 02:48:32 +00:00
|
|
|
#include <sprout/algorithm/fixed/swap_element.hpp>
|
|
|
|
#include <sprout/algorithm/fixed/pop_heap.hpp>
|
|
|
|
#include <sprout/algorithm/fixed/make_heap.hpp>
|
2012-04-01 13:15:09 +00:00
|
|
|
#include HDR_FUNCTIONAL_SSCRISK_CEL_OR_SPROUT
|
2011-09-01 02:48:32 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
|
|
|
namespace detail {
|
|
|
|
template<typename Container, typename Compare>
|
2012-09-29 08:10:46 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Container>::type
|
|
|
|
make_partial_heap_impl_1(
|
|
|
|
Container const& cont, Compare comp,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<Container>::difference_type offset,
|
|
|
|
typename sprout::container_traits<Container>::difference_type size,
|
|
|
|
typename sprout::container_traits<Container>::difference_type middle_size,
|
|
|
|
typename sprout::container_traits<Container>::difference_type n
|
2011-09-01 02:48:32 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
return n < size
|
2012-03-31 07:24:13 +00:00
|
|
|
? comp(*sprout::next(sprout::internal_begin(cont), offset + n), *sprout::next(sprout::internal_begin(cont), offset))
|
2011-09-01 02:48:32 +00:00
|
|
|
? sprout::fixed::detail::make_partial_heap_impl_1(
|
|
|
|
sprout::fixed::detail::pop_heap_impl(
|
2011-10-01 15:19:13 +00:00
|
|
|
sprout::fixed::swap_element(
|
|
|
|
cont,
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::next(sprout::internal_begin(cont), offset + n),
|
|
|
|
sprout::next(sprout::internal_begin(cont), offset)
|
2011-10-01 15:19:13 +00:00
|
|
|
),
|
2011-09-01 02:48:32 +00:00
|
|
|
comp,
|
2012-09-29 08:10:46 +00:00
|
|
|
offset, middle_size
|
2011-09-01 02:48:32 +00:00
|
|
|
),
|
|
|
|
comp,
|
2012-09-29 08:10:46 +00:00
|
|
|
offset, size, middle_size, n + 1
|
2011-09-01 02:48:32 +00:00
|
|
|
)
|
|
|
|
: sprout::fixed::detail::make_partial_heap_impl_1(cont, comp, offset, size, middle_size, n + 1)
|
2012-03-31 07:24:13 +00:00
|
|
|
: sprout::deep_copy(cont)
|
2011-09-01 02:48:32 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename Container, typename Compare>
|
2012-09-29 08:10:46 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Container>::type
|
|
|
|
make_partial_heap_impl(
|
|
|
|
Container const& cont, Compare comp,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<Container>::difference_type offset,
|
|
|
|
typename sprout::container_traits<Container>::difference_type size,
|
|
|
|
typename sprout::container_traits<Container>::difference_type middle_size
|
2011-09-01 02:48:32 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::fixed::detail::make_partial_heap_impl_1(
|
2012-09-29 08:10:46 +00:00
|
|
|
sprout::fixed::detail::make_heap_impl(cont, comp, offset, middle_size), comp,
|
|
|
|
offset, size, middle_size, middle_size
|
2011-09-01 02:48:32 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// make_partial_heap
|
|
|
|
//
|
|
|
|
template<typename Container, typename Compare>
|
2012-09-29 08:10:46 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Container>::type
|
|
|
|
make_partial_heap(Container const& cont, typename sprout::container_traits<Container>::const_iterator middle, Compare comp) {
|
2011-09-01 02:48:32 +00:00
|
|
|
return sprout::fixed::detail::make_partial_heap_impl(
|
2012-09-29 08:10:46 +00:00
|
|
|
cont, comp,
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::internal_begin_offset(cont),
|
2011-09-01 02:48:32 +00:00
|
|
|
sprout::size(cont),
|
2013-01-03 08:01:50 +00:00
|
|
|
sprout::distance(sprout::begin(cont), middle)
|
2011-09-01 02:48:32 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// make_partial_heap
|
|
|
|
//
|
|
|
|
template<typename Container>
|
2012-09-29 08:10:46 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Container>::type
|
|
|
|
make_partial_heap(Container const& cont, typename sprout::container_traits<Container>::const_iterator middle) {
|
2011-09-01 02:48:32 +00:00
|
|
|
return sprout::fixed::detail::make_partial_heap_impl(
|
2012-09-29 08:10:46 +00:00
|
|
|
cont, NS_SSCRISK_CEL_OR_SPROUT::less<typename sprout::container_traits<Container>::value_type>(),
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::internal_begin_offset(cont),
|
2011-09-01 02:48:32 +00:00
|
|
|
sprout::size(cont),
|
2013-01-03 08:01:50 +00:00
|
|
|
sprout::distance(sprout::begin(cont), middle)
|
2011-09-01 02:48:32 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace fixed
|
2011-09-03 13:26:26 +00:00
|
|
|
|
|
|
|
using sprout::fixed::make_partial_heap;
|
2011-09-01 02:48:32 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_MAKE_PARTIAL_HEAP_HPP
|