Sprout/sprout/algorithm/fixed/nth_element.hpp

82 lines
3.2 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2014-01-08 07:48:12 +00:00
Copyright (c) 2011-2014 Bolero MURAKAMI
2013-08-08 09:54:33 +00:00
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_NTH_ELEMENT_HPP
#define SPROUT_ALGORITHM_FIXED_NTH_ELEMENT_HPP
#include <sprout/config.hpp>
#include <sprout/container/traits.hpp>
#include <sprout/container/functions.hpp>
#include <sprout/iterator/operation.hpp>
#include <sprout/algorithm/fixed/results.hpp>
2011-09-01 02:48:32 +00:00
#include <sprout/algorithm/fixed/swap_element.hpp>
#include <sprout/algorithm/fixed/make_partial_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>
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Container>::type
nth_element_impl_1(
2011-09-01 02:48:32 +00:00
Container const& cont,
typename sprout::container_traits<Container>::difference_type offset,
typename sprout::container_traits<Container>::difference_type nth_size
2011-09-01 02:48:32 +00:00
)
{
return sprout::fixed::swap_element(
cont,
sprout::next(sprout::internal_begin(cont), offset),
sprout::next(sprout::internal_begin(cont), offset + nth_size)
2011-09-01 02:48:32 +00:00
);
}
template<typename Container, typename Compare>
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Container>::type
nth_element_impl(
Container const& cont, Compare comp,
typename sprout::container_traits<Container>::difference_type offset,
typename sprout::container_traits<Container>::difference_type size,
typename sprout::container_traits<Container>::difference_type nth_size
2011-09-01 02:48:32 +00:00
)
{
return sprout::fixed::detail::nth_element_impl_1(
sprout::fixed::detail::make_partial_heap_impl(cont, comp, offset, size, nth_size + 1),
offset,
nth_size
);
}
} // namespace detail
//
// nth_element
//
template<typename Container, typename Compare>
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Container>::type
nth_element(Container const& cont, typename sprout::container_traits<Container>::const_iterator nth, Compare comp) {
2011-09-01 02:48:32 +00:00
return sprout::fixed::detail::nth_element_impl(
cont, comp,
sprout::internal_begin_offset(cont),
2011-09-01 02:48:32 +00:00
sprout::size(cont),
sprout::distance(sprout::begin(cont), nth)
2011-09-01 02:48:32 +00:00
);
}
template<typename Container>
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Container>::type
nth_element(Container const& cont, typename sprout::container_traits<Container>::const_iterator nth) {
2011-09-01 02:48:32 +00:00
return sprout::fixed::detail::nth_element_impl(
cont, NS_SSCRISK_CEL_OR_SPROUT::less<typename sprout::container_traits<Container>::value_type>(),
sprout::internal_begin_offset(cont),
2011-09-01 02:48:32 +00:00
sprout::size(cont),
sprout::distance(sprout::begin(cont), nth)
2011-09-01 02:48:32 +00:00
);
}
} // namespace fixed
2011-09-03 13:26:26 +00:00
using sprout::fixed::nth_element;
2011-09-01 02:48:32 +00:00
} // namespace sprout
#endif // #ifndef SPROUT_ALGORITHM_FIXED_NTH_ELEMENT_HPP