2011-09-02 05:12:44 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_FIXED_MAKE_HEAP_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIXED_MAKE_HEAP_HPP
|
2011-09-01 02:48:32 +00:00
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/fixed_container/traits.hpp>
|
|
|
|
#include <sprout/fixed_container/functions.hpp>
|
|
|
|
#include <sprout/algorithm/fixed/swap_element.hpp>
|
|
|
|
#include HDR_FUNCTIONAL_SSCRISK_CEL_OR_SPROUT_DETAIL
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
|
|
|
namespace detail {
|
|
|
|
template<typename Container, typename Compare>
|
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed_container_traits<Container>::fixed_container_type make_heap_impl(
|
|
|
|
Container const& cont,
|
|
|
|
Compare comp,
|
|
|
|
typename sprout::fixed_container_traits<Container>::difference_type offset,
|
|
|
|
typename sprout::fixed_container_traits<Container>::difference_type size,
|
|
|
|
typename sprout::fixed_container_traits<Container>::difference_type n = 0,
|
|
|
|
typename sprout::fixed_container_traits<Container>::difference_type l = 1,
|
|
|
|
typename sprout::fixed_container_traits<Container>::difference_type r = 2
|
|
|
|
);
|
|
|
|
template<typename Container, typename Compare>
|
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed_container_traits<Container>::fixed_container_type make_heap_impl_1(
|
|
|
|
Container const& cont,
|
|
|
|
Compare comp,
|
|
|
|
typename sprout::fixed_container_traits<Container>::difference_type offset,
|
|
|
|
typename sprout::fixed_container_traits<Container>::difference_type size,
|
|
|
|
typename sprout::fixed_container_traits<Container>::difference_type n,
|
|
|
|
typename sprout::fixed_container_traits<Container>::difference_type l,
|
|
|
|
typename sprout::fixed_container_traits<Container>::difference_type r
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return comp(*(sprout::fixed_begin(cont) + offset + l), *(sprout::fixed_begin(cont) + offset + r))
|
|
|
|
? comp(*(sprout::fixed_begin(cont) + offset + n), *(sprout::fixed_begin(cont) + offset + r))
|
|
|
|
? sprout::fixed::detail::make_heap_impl(
|
|
|
|
sprout::fixed::swap_element(cont, sprout::fixed_begin(cont) + offset + n, sprout::fixed_begin(cont) + offset + r),
|
|
|
|
comp,
|
|
|
|
offset,
|
|
|
|
size,
|
|
|
|
r,
|
|
|
|
r * 2 + 1,
|
|
|
|
r * 2 + 2
|
|
|
|
)
|
|
|
|
: sprout::get_fixed_copy(cont)
|
|
|
|
: comp(*(sprout::fixed_begin(cont) + offset + n), *(sprout::fixed_begin(cont) + offset + l))
|
|
|
|
? sprout::fixed::detail::make_heap_impl(
|
|
|
|
sprout::fixed::swap_element(cont, sprout::fixed_begin(cont) + offset + n, sprout::fixed_begin(cont) + offset + l),
|
|
|
|
comp,
|
|
|
|
offset,
|
|
|
|
size,
|
|
|
|
l,
|
|
|
|
l * 2 + 1,
|
|
|
|
l * 2 + 2
|
|
|
|
)
|
|
|
|
: sprout::get_fixed_copy(cont)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename Container, typename Compare>
|
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed_container_traits<Container>::fixed_container_type make_heap_impl(
|
|
|
|
Container const& cont,
|
|
|
|
Compare comp,
|
|
|
|
typename sprout::fixed_container_traits<Container>::difference_type offset,
|
|
|
|
typename sprout::fixed_container_traits<Container>::difference_type size,
|
|
|
|
typename sprout::fixed_container_traits<Container>::difference_type n,
|
|
|
|
typename sprout::fixed_container_traits<Container>::difference_type l,
|
|
|
|
typename sprout::fixed_container_traits<Container>::difference_type r
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return r > size
|
|
|
|
? sprout::get_fixed_copy(cont)
|
|
|
|
: r == size
|
|
|
|
? comp(*(sprout::fixed_begin(cont) + offset + n), *(sprout::fixed_begin(cont) + offset + l))
|
|
|
|
? sprout::fixed::swap_element(cont, sprout::fixed_begin(cont) + offset + n, sprout::fixed_begin(cont) + offset + l)
|
|
|
|
: sprout::get_fixed_copy(cont)
|
|
|
|
: sprout::fixed::detail::make_heap_impl_1(
|
|
|
|
sprout::fixed::detail::make_heap_impl(sprout::fixed::detail::make_heap_impl(cont, comp, offset, size, l, l * 2 + 1, l * 2 + 2), comp, offset, size, r, r * 2 + 1, r * 2 + 2),
|
|
|
|
comp,
|
|
|
|
offset,
|
|
|
|
size,
|
|
|
|
n,
|
|
|
|
l,
|
|
|
|
r
|
|
|
|
)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// make_heap
|
|
|
|
//
|
|
|
|
template<typename Container, typename Compare>
|
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed_container_traits<Container>::fixed_container_type make_heap(
|
|
|
|
Container const& cont,
|
|
|
|
Compare comp
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::fixed::detail::make_heap_impl(
|
|
|
|
cont,
|
|
|
|
comp,
|
|
|
|
sprout::fixed_begin_offset(cont),
|
|
|
|
sprout::size(cont)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// make_heap
|
|
|
|
//
|
|
|
|
template<typename Container>
|
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed_container_traits<Container>::fixed_container_type make_heap(
|
|
|
|
Container const& cont
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::fixed::detail::make_heap_impl(
|
|
|
|
cont,
|
|
|
|
NS_SSCRISK_CEL_OR_SPROUT_DETAIL::less<typename sprout::fixed_container_traits<Container>::value_type>(),
|
|
|
|
sprout::fixed_begin_offset(cont),
|
|
|
|
sprout::size(cont)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace fixed
|
|
|
|
} // namespace sprout
|
|
|
|
|
2011-09-02 05:12:44 +00:00
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_MAKE_HEAP_HPP
|