// Copyright Neil Groves 2009. Use, modification and // distribution is subject to 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) // // // For more information, see http://www.boost.org/libs/range/ // #ifndef BOOST_RANGE_ALGORITHM_HEAP_ALGORITHM_HPP_INCLUDED #define BOOST_RANGE_ALGORITHM_HEAP_ALGORITHM_HPP_INCLUDED #include #include #include #include #include namespace boost { /// \brief template function push_heap /// /// range-based version of the push_heap std algorithm /// /// \pre RandomAccessRange is a model of the RandomAccessRangeConcept /// \pre Compare is a model of the BinaryPredicateConcept template inline void push_heap(RandomAccessRange& rng) { boost::function_requires< RandomAccessRangeConcept >(); std::push_heap(boost::begin(rng), boost::end(rng)); } /// \overload template inline void push_heap(const RandomAccessRange& rng) { boost::function_requires< RandomAccessRangeConcept >(); std::push_heap(boost::begin(rng), boost::end(rng)); } /// \overload template inline void push_heap(RandomAccessRange& rng, Compare comp_pred) { boost::function_requires< RandomAccessRangeConcept >(); std::push_heap(boost::begin(rng), boost::end(rng), comp_pred); } /// \overload template inline void push_heap(const RandomAccessRange& rng, Compare comp_pred) { boost::function_requires< RandomAccessRangeConcept >(); std::push_heap(boost::begin(rng), boost::end(rng), comp_pred); } /// \brief template function pop_heap /// /// range-based version of the pop_heap std algorithm /// /// \pre RandomAccessRange is a model of the RandomAccessRangeConcept /// \pre Compare is a model of the BinaryPredicateConcept template inline void pop_heap(RandomAccessRange& rng) { boost::function_requires< RandomAccessRangeConcept >(); std::pop_heap(boost::begin(rng), boost::end(rng)); } /// \overload template inline void pop_heap(const RandomAccessRange& rng) { boost::function_requires< RandomAccessRangeConcept >(); std::pop_heap(boost::begin(rng),boost::end(rng)); } /// \overload template inline void pop_heap(RandomAccessRange& rng, Compare comp_pred) { boost::function_requires< RandomAccessRangeConcept >(); std::pop_heap(boost::begin(rng), boost::end(rng), comp_pred); } /// \overload template inline void pop_heap(const RandomAccessRange& rng, Compare comp_pred) { boost::function_requires< RandomAccessRangeConcept >(); std::pop_heap(boost::begin(rng), boost::end(rng), comp_pred); } /// \brief template function make_heap /// /// range-based version of the make_heap std algorithm /// /// \pre RandomAccessRange is a model of the RandomAccessRangeConcept /// \pre Compare is a model of the BinaryPredicateConcept template inline void make_heap(RandomAccessRange& rng) { boost::function_requires< RandomAccessRangeConcept >(); std::make_heap(boost::begin(rng), boost::end(rng)); } /// \overload template inline void make_heap(const RandomAccessRange& rng) { boost::function_requires< RandomAccessRangeConcept >(); std::make_heap(boost::begin(rng),boost::end(rng)); } /// \overload template inline void make_heap(RandomAccessRange& rng, Compare comp_pred) { boost::function_requires< RandomAccessRangeConcept >(); std::make_heap(boost::begin(rng), boost::end(rng), comp_pred); } /// \overload template inline void make_heap(const RandomAccessRange& rng, Compare comp_pred) { boost::function_requires< RandomAccessRangeConcept >(); std::make_heap(boost::begin(rng), boost::end(rng), comp_pred); } /// \brief template function sort_heap /// /// range-based version of the sort_heap std algorithm /// /// \pre RandomAccessRange is a model of the RandomAccessRangeConcept /// \pre Compare is a model of the BinaryPredicateConcept template inline void sort_heap(RandomAccessRange& rng) { boost::function_requires< RandomAccessRangeConcept >(); std::sort_heap(boost::begin(rng), boost::end(rng)); } /// \overload template inline void sort_heap(const RandomAccessRange& rng) { boost::function_requires< RandomAccessRangeConcept >(); std::sort_heap(boost::begin(rng), boost::end(rng)); } /// \overload template inline void sort_heap(RandomAccessRange& rng, Compare comp_pred) { boost::function_requires< RandomAccessRangeConcept >(); std::sort_heap(boost::begin(rng), boost::end(rng), comp_pred); } /// \overload template inline void sort_heap(const RandomAccessRange& rng, Compare comp_pred) { boost::function_requires< RandomAccessRangeConcept >(); std::sort_heap(boost::begin(rng), boost::end(rng), comp_pred); } } #endif // include guard