mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-14 15:04:09 +00:00
最初
This commit is contained in:
commit
b3bb8121e8
362 changed files with 16820 additions and 0 deletions
50
sprout/algorithm/fixed/inplace_merge.hpp
Normal file
50
sprout/algorithm/fixed/inplace_merge.hpp
Normal file
|
@ -0,0 +1,50 @@
|
|||
#ifndef SPROUT_ALGORITHM_FIXED_INPLACE_MERGE_HPP
|
||||
#define SPROUT_ALGORITHM_FIXED_INPLACE_MERGE_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/fixed_container/traits.hpp>
|
||||
#include <sprout/fixed_container/functions.hpp>
|
||||
#include <sprout/algorithm/fixed/merge.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace fixed {
|
||||
//
|
||||
// inplace_merge
|
||||
//
|
||||
template<typename Container, typename Compare>
|
||||
SPROUT_CONSTEXPR inline typename sprout::fixed_container_traits<Container>::fixed_container_type inplace_merge(
|
||||
Container const& cont,
|
||||
typename sprout::fixed_container_traits<Container>::const_iterator middle,
|
||||
Compare comp
|
||||
)
|
||||
{
|
||||
return sprout::fixed::merge(
|
||||
sprout::begin(cont),
|
||||
middle,
|
||||
middle,
|
||||
sprout::end(cont),
|
||||
cont,
|
||||
comp
|
||||
);
|
||||
}
|
||||
//
|
||||
// inplace_merge
|
||||
//
|
||||
template<typename Container>
|
||||
SPROUT_CONSTEXPR inline typename sprout::fixed_container_traits<Container>::fixed_container_type inplace_merge(
|
||||
Container const& cont,
|
||||
typename sprout::fixed_container_traits<Container>::const_iterator middle
|
||||
)
|
||||
{
|
||||
return sprout::fixed::merge(
|
||||
sprout::begin(cont),
|
||||
middle,
|
||||
middle,
|
||||
sprout::end(cont),
|
||||
cont
|
||||
);
|
||||
}
|
||||
} // namespace fixed
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_ALGORITHM_FIXED_INPLACE_MERGE_HPP
|
Loading…
Add table
Add a link
Reference in a new issue