Difference between revisions of "cpp/algorithm/merge"
m (Update links.) |
m (Minor fix.) |
||
(43 intermediate revisions by 17 users not shown) | |||
Line 2: | Line 2: | ||
{{cpp/algorithm/navbar}} | {{cpp/algorithm/navbar}} | ||
{{dcl begin}} | {{dcl begin}} | ||
− | {{dcl header | algorithm}} | + | {{dcl header|algorithm}} |
− | {{ | + | {{dcla|num=1|notes={{mark constexpr since c++20}}| |
template< class InputIt1, class InputIt2, class OutputIt > | template< class InputIt1, class InputIt2, class OutputIt > | ||
OutputIt merge( InputIt1 first1, InputIt1 last1, | OutputIt merge( InputIt1 first1, InputIt1 last1, | ||
Line 9: | Line 9: | ||
OutputIt d_first ); | OutputIt d_first ); | ||
}} | }} | ||
− | {{dcl | num=2 | | + | {{dcl|num=2|since=c++17| |
− | template< class InputIt1, class InputIt2, class OutputIt, class Compare> | + | template< class ExecutionPolicy, |
+ | class ForwardIt1, class ForwardIt2, class ForwardIt3 > | ||
+ | ForwardIt3 merge( ExecutionPolicy&& policy, | ||
+ | ForwardIt1 first1, ForwardIt1 last1, | ||
+ | ForwardIt2 first2, ForwardIt2 last2, | ||
+ | ForwardIt3 d_first ); | ||
+ | }} | ||
+ | {{dcla|num=3|notes={{mark constexpr since c++20}}| | ||
+ | template< class InputIt1, class InputIt2, | ||
+ | class OutputIt, class Compare > | ||
OutputIt merge( InputIt1 first1, InputIt1 last1, | OutputIt merge( InputIt1 first1, InputIt1 last1, | ||
InputIt2 first2, InputIt2 last2, | InputIt2 first2, InputIt2 last2, | ||
OutputIt d_first, Compare comp ); | OutputIt d_first, Compare comp ); | ||
+ | }} | ||
+ | {{dcl|num=4|since=c++17| | ||
+ | template< class ExecutionPolicy, | ||
+ | class ForwardIt1, class ForwardIt2, | ||
+ | class ForwardIt3, class Compare > | ||
+ | ForwardIt3 merge( ExecutionPolicy&& policy, | ||
+ | ForwardIt1 first1, ForwardIt1 last1, | ||
+ | ForwardIt2 first2, ForwardIt2 last2, | ||
+ | ForwardIt3 d_first, Compare comp ); | ||
}} | }} | ||
{{dcl end}} | {{dcl end}} | ||
− | Merges two sorted ranges {{ | + | Merges two sorted ranges {{range|first1|last1}} and {{range|first2|last2}} into one sorted range beginning at {{c|d_first}}. |
+ | |||
+ | @1@ If {{range|first1|last1}} or {{range|first2|last2}} is not {{rlp|/#Requirements|sorted}} with respect to {{rev inl|until=c++20|{{c/core|operator<}}}}{{rev inl|since=c++20|{{c|std::less{}<!---->}}}}, the behavior is undefined. | ||
+ | |||
+ | @3@ If {{range|first1|last1}} or {{range|first2|last2}} is not sorted with respect to {{c|comp}}, the behavior is undefined. | ||
+ | |||
+ | @2,4@ Same as {{v|1,3}}, but executed according to {{c|policy}}. | ||
+ | @@ {{cpp/algorithm/parallel overload precondition|plural=yes}} | ||
+ | |||
+ | This merge function is stable, which means that for equivalent elements in the original two ranges, the elements from the first range (preserving their original order) precede the elements from the second range (preserving their original order). | ||
+ | |||
+ | If the output range overlaps with {{range|first1|last1}} or {{range|first2|last2}}, the behavior is undefined. | ||
===Parameters=== | ===Parameters=== | ||
{{par begin}} | {{par begin}} | ||
− | {{par | first1, last1 | the first range of elements to merge}} | + | {{par|first1, last1|the first range of elements to merge}} |
− | {{par | first2, last2 | the second range of elements to merge}} | + | {{par|first2, last2|the second range of elements to merge}} |
− | {{par | d_first | the beginning of the destination range}} | + | {{par|d_first|the beginning of the destination range}} |
− | {{par cmp | comp | p1=InputIt1 | p2=InputIt2}} | + | {{par exec pol}} |
+ | {{par cmp ord|comp|p1=InputIt1|p2=InputIt2}} | ||
{{par hreq}} | {{par hreq}} | ||
− | {{par req | + | {{par req named|InputIt1, InputIt2|InputIterator}} |
− | {{par req | + | {{par req named|ForwardIt1, ForwardIt2, ForwardIt3|ForwardIterator}} |
− | {{par req | + | {{par req named|OutputIt|OutputIterator}} |
+ | {{par req named|Compare|Compare}} | ||
{{par end}} | {{par end}} | ||
Line 35: | Line 66: | ||
===Complexity=== | ===Complexity=== | ||
− | + | Given {{mathjax-or|\(\scriptsize N_1\)|N{{su|b=1}}}} as {{c|std::distance(first1, last1)}} and {{mathjax-or|\(\scriptsize N_2\)|N{{su|b=2}}}} as {{c|std::distance(first2, last2)}}: | |
+ | |||
+ | @1@ At most {{mathjax-or|\(\scriptsize N_1+N_2-1\)|N{{su|b=1}}+N{{su|b=2}}-1}} comparisons using {{rev inl|until=c++20|{{c/core|operator<}}}}{{rev inl|since=c++20|{{c|std::less{}<!---->}}}}. | ||
+ | |||
+ | @2@ {{mathjax-or|\(\scriptsize O(N_1+N_2)\)|O(N{{su|b=1}}+N{{su|b=2}})}} comparisons using {{rev inl|until=c++20|{{c/core|operator<}}}}{{rev inl|since=c++20|{{c|std::less{}<!---->}}}}. | ||
+ | |||
+ | @3@ At most {{mathjax-or|\(\scriptsize N_1+N_2-1\)|N{{su|b=1}}+N{{su|b=2}}-1}} applications of the comparison function {{c|comp}}. | ||
+ | |||
+ | @4@ {{mathjax-or|\(\scriptsize O(N_1+N_2)\)|O(N{{su|b=1}}+N{{su|b=2}})}} applications of the comparison function {{c|comp}}. | ||
+ | |||
+ | ===Exceptions=== | ||
+ | {{cpp/algorithm/parallel exceptions reporting behavior|singular=no}} | ||
===Possible implementation=== | ===Possible implementation=== | ||
− | {{eq | + | See also the implementations in [https://github.com/gcc-mirror/gcc/blob/d9375e490072d1aae73a93949aa158fcd2a27018/libstdc%2B%2B-v3/include/bits/stl_algo.h#L4856 libstdc++] and [https://github.com/llvm-mirror/libcxx/blob/a12cb9d211019d99b5875b6d8034617cbc24c2cc/include/algorithm#L4348 libc++]. |
− | + | {{eq impl | |
+ | |title1=merge (1)|ver1=1|1= | ||
template<class InputIt1, class InputIt2, class OutputIt> | template<class InputIt1, class InputIt2, class OutputIt> | ||
OutputIt merge(InputIt1 first1, InputIt1 last1, | OutputIt merge(InputIt1 first1, InputIt1 last1, | ||
Line 45: | Line 88: | ||
OutputIt d_first) | OutputIt d_first) | ||
{ | { | ||
− | for (; first1 != last1; ++d_first) { | + | for (; first1 != last1; ++d_first) |
− | if (first2 == last2) | + | { |
+ | if (first2 == last2) | ||
return std::copy(first1, last1, d_first); | return std::copy(first1, last1, d_first); | ||
− | + | ||
− | if (*first2 < *first1) { | + | if (*first2 < *first1) |
+ | { | ||
*d_first = *first2; | *d_first = *first2; | ||
++first2; | ++first2; | ||
− | } else { | + | } |
+ | else | ||
+ | { | ||
*d_first = *first1; | *d_first = *first1; | ||
++first1; | ++first1; | ||
Line 59: | Line 106: | ||
return std::copy(first2, last2, d_first); | return std::copy(first2, last2, d_first); | ||
} | } | ||
− | + | |title2=merge (3)|ver2=3|2= | |
template<class InputIt1, class InputIt2, | template<class InputIt1, class InputIt2, | ||
class OutputIt, class Compare> | class OutputIt, class Compare> | ||
Line 66: | Line 113: | ||
OutputIt d_first, Compare comp) | OutputIt d_first, Compare comp) | ||
{ | { | ||
− | for (; first1 != last1; ++d_first) { | + | for (; first1 != last1; ++d_first) |
− | if (first2 == last2) | + | { |
+ | if (first2 == last2) | ||
return std::copy(first1, last1, d_first); | return std::copy(first1, last1, d_first); | ||
− | + | ||
− | if (comp(*first2, *first1)) { | + | if (comp(*first2, *first1)) |
+ | { | ||
*d_first = *first2; | *d_first = *first2; | ||
++first2; | ++first2; | ||
− | } else { | + | } |
+ | else | ||
+ | { | ||
*d_first = *first1; | *d_first = *first1; | ||
++first1; | ++first1; | ||
Line 81: | Line 132: | ||
} | } | ||
}} | }} | ||
+ | |||
+ | ===Notes=== | ||
+ | This algorithm performs a similar task as {{c|std::set_union}} does. Both consume two sorted input ranges and produce a sorted output with elements from both inputs. The difference between these two algorithms is with handling values from both input ranges which compare equivalent (see notes on {{named req|LessThanComparable}}). If any equivalent values appeared {{c|n}} times in the first range and {{c|m}} times in the second, {{tt|std::merge}} would output all {{c|n + m}} occurrences whereas {{tt|std::set_union}} would output {{c|std::max(n, m)}} ones only. So {{tt|std::merge}} outputs exactly {{c|std::distance(first1, last1) + std::distance(first2, last2)}} values and {{tt|std::set_union}} may produce fewer. | ||
===Example=== | ===Example=== | ||
{{example | {{example | ||
− | + | | | |
− | + | |code= | |
+ | #include <algorithm> | ||
+ | #include <functional> | ||
#include <iostream> | #include <iostream> | ||
#include <iterator> | #include <iterator> | ||
− | #include < | + | #include <random> |
− | + | ||
#include <vector> | #include <vector> | ||
− | + | ||
− | + | auto print = [](const auto rem, const auto& v) | |
{ | { | ||
− | + | std::cout << rem; | |
− | + | std::copy(v.begin(), v.end(), std::ostream_iterator<int>(std::cout, " ")); | |
− | std:: | + | std::cout << '\n'; |
− | + | }; | |
− | // fill the vectors | + | |
− | + | int main() | |
− | + | { | |
− | + | // fill the vectors with random numbers | |
− | + | std::random_device rd; | |
− | + | std::mt19937 mt(rd()); | |
− | + | std::uniform_int_distribution<> dis(0, 9); | |
+ | |||
+ | std::vector<int> v1(10), v2(10); | ||
+ | std::generate(v1.begin(), v1.end(), std::bind(dis, std::ref(mt))); | ||
+ | std::generate(v2.begin(), v2.end(), std::bind(dis, std::ref(mt))); | ||
+ | |||
+ | print("Originally:\nv1: ", v1); | ||
+ | print("v2: ", v2); | ||
+ | |||
std::sort(v1.begin(), v1.end()); | std::sort(v1.begin(), v1.end()); | ||
std::sort(v2.begin(), v2.end()); | std::sort(v2.begin(), v2.end()); | ||
− | + | ||
− | + | print("After sorting:\nv1: ", v1); | |
− | + | print("v2: ", v2); | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
// merge | // merge | ||
− | std::merge(v1.begin(), v1.end(), | + | std::vector<int> dst; |
− | + | std::merge(v1.begin(), v1.end(), v2.begin(), v2.end(), std::back_inserter(dst)); | |
− | + | ||
− | + | print("After merging:\ndst: ", dst); | |
− | + | } | |
− | + | |p=true | |
− | + | |output= | |
− | + | Originally: | |
− | + | v1: 2 6 5 7 4 2 2 6 7 0 | |
− | } | + | v2: 8 3 2 5 0 1 9 6 5 0 |
− | | output= | + | After sorting: |
− | v1 : 0 0 2 2 | + | v1: 0 2 2 2 4 5 6 6 7 7 |
− | v2 : 1 2 5 5 6 | + | v2: 0 0 1 2 3 5 5 6 8 9 |
− | dst: 0 0 1 2 2 2 3 | + | After merging: |
+ | dst: 0 0 0 1 2 2 2 2 3 4 5 5 5 6 6 6 7 7 8 9 | ||
}} | }} | ||
+ | |||
+ | ===Defect reports=== | ||
+ | {{dr list begin}} | ||
+ | {{dr list item|wg=lwg|dr=780|std=C++98|before=the merge operation was not defined|after=defined}} | ||
+ | {{dr list end}} | ||
===See also=== | ===See also=== | ||
{{dsc begin}} | {{dsc begin}} | ||
− | {{dsc inc | cpp/algorithm/dsc inplace_merge}} | + | {{dsc inc|cpp/algorithm/dsc inplace_merge}} |
− | {{dsc inc | cpp/algorithm/dsc sort}} | + | {{dsc inc|cpp/algorithm/dsc is_sorted}} |
− | {{dsc inc | cpp/algorithm/dsc stable_sort}} | + | {{dsc inc|cpp/algorithm/dsc set_union}} |
+ | {{dsc inc|cpp/algorithm/dsc sort}} | ||
+ | {{dsc inc|cpp/algorithm/dsc stable_sort}} | ||
+ | {{dsc inc|cpp/algorithm/ranges/dsc merge}} | ||
{{dsc end}} | {{dsc end}} | ||
− | + | {{langlinks|de|es|fr|it|ja|pt|ru|zh}} | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + |
Latest revision as of 22:37, 7 April 2024
Defined in header <algorithm>
|
||
template< class InputIt1, class InputIt2, class OutputIt > OutputIt merge( InputIt1 first1, InputIt1 last1, |
(1) | (constexpr since C++20) |
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2, class ForwardIt3 > |
(2) | (since C++17) |
template< class InputIt1, class InputIt2, class OutputIt, class Compare > |
(3) | (constexpr since C++20) |
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2, |
(4) | (since C++17) |
Merges two sorted ranges [
first1,
last1)
and [
first2,
last2)
into one sorted range beginning at d_first.
[
first1,
last1)
or [
first2,
last2)
is not sorted with respect to operator<(until C++20)std::less{}(since C++20), the behavior is undefined.[
first1,
last1)
or [
first2,
last2)
is not sorted with respect to comp, the behavior is undefined.
std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> is true. |
(until C++20) |
std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> is true. |
(since C++20) |
This merge function is stable, which means that for equivalent elements in the original two ranges, the elements from the first range (preserving their original order) precede the elements from the second range (preserving their original order).
If the output range overlaps with [
first1,
last1)
or [
first2,
last2)
, the behavior is undefined.
Contents |
[edit] Parameters
first1, last1 | - | the first range of elements to merge |
first2, last2 | - | the second range of elements to merge |
d_first | - | the beginning of the destination range |
policy | - | the execution policy to use. See execution policy for details. |
comp | - | comparison function object (i.e. an object that satisfies the requirements of Compare) which returns true if the first argument is less than (i.e. is ordered before) the second. The signature of the comparison function should be equivalent to the following: bool cmp(const Type1& a, const Type2& b); While the signature does not need to have const&, the function must not modify the objects passed to it and must be able to accept all values of type (possibly const) |
Type requirements | ||
-InputIt1, InputIt2 must meet the requirements of LegacyInputIterator.
| ||
-ForwardIt1, ForwardIt2, ForwardIt3 must meet the requirements of LegacyForwardIterator.
| ||
-OutputIt must meet the requirements of LegacyOutputIterator.
| ||
-Compare must meet the requirements of Compare.
|
[edit] Return value
An output iterator to element past the last element copied.
[edit] Complexity
Given N1 as std::distance(first1, last1) and N2 as std::distance(first2, last2):
[edit] Exceptions
The overloads with a template parameter named ExecutionPolicy
report errors as follows:
- If execution of a function invoked as part of the algorithm throws an exception and
ExecutionPolicy
is one of the standard policies, std::terminate is called. For any otherExecutionPolicy
, the behavior is implementation-defined. - If the algorithm fails to allocate memory, std::bad_alloc is thrown.
[edit] Possible implementation
See also the implementations in libstdc++ and libc++.
merge (1) |
---|
template<class InputIt1, class InputIt2, class OutputIt> OutputIt merge(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt d_first) { for (; first1 != last1; ++d_first) { if (first2 == last2) return std::copy(first1, last1, d_first); if (*first2 < *first1) { *d_first = *first2; ++first2; } else { *d_first = *first1; ++first1; } } return std::copy(first2, last2, d_first); } |
merge (3) |
template<class InputIt1, class InputIt2, class OutputIt, class Compare> OutputIt merge(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt d_first, Compare comp) { for (; first1 != last1; ++d_first) { if (first2 == last2) return std::copy(first1, last1, d_first); if (comp(*first2, *first1)) { *d_first = *first2; ++first2; } else { *d_first = *first1; ++first1; } } return std::copy(first2, last2, d_first); } |
[edit] Notes
This algorithm performs a similar task as std::set_union does. Both consume two sorted input ranges and produce a sorted output with elements from both inputs. The difference between these two algorithms is with handling values from both input ranges which compare equivalent (see notes on LessThanComparable). If any equivalent values appeared n times in the first range and m times in the second, std::merge
would output all n + m occurrences whereas std::set_union
would output std::max(n, m) ones only. So std::merge
outputs exactly std::distance(first1, last1) + std::distance(first2, last2) values and std::set_union
may produce fewer.
[edit] Example
#include <algorithm> #include <functional> #include <iostream> #include <iterator> #include <random> #include <vector> auto print = [](const auto rem, const auto& v) { std::cout << rem; std::copy(v.begin(), v.end(), std::ostream_iterator<int>(std::cout, " ")); std::cout << '\n'; }; int main() { // fill the vectors with random numbers std::random_device rd; std::mt19937 mt(rd()); std::uniform_int_distribution<> dis(0, 9); std::vector<int> v1(10), v2(10); std::generate(v1.begin(), v1.end(), std::bind(dis, std::ref(mt))); std::generate(v2.begin(), v2.end(), std::bind(dis, std::ref(mt))); print("Originally:\nv1: ", v1); print("v2: ", v2); std::sort(v1.begin(), v1.end()); std::sort(v2.begin(), v2.end()); print("After sorting:\nv1: ", v1); print("v2: ", v2); // merge std::vector<int> dst; std::merge(v1.begin(), v1.end(), v2.begin(), v2.end(), std::back_inserter(dst)); print("After merging:\ndst: ", dst); }
Possible output:
Originally: v1: 2 6 5 7 4 2 2 6 7 0 v2: 8 3 2 5 0 1 9 6 5 0 After sorting: v1: 0 2 2 2 4 5 6 6 7 7 v2: 0 0 1 2 3 5 5 6 8 9 After merging: dst: 0 0 0 1 2 2 2 2 3 4 5 5 5 6 6 6 7 7 8 9
[edit] Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR | Applied to | Behavior as published | Correct behavior |
---|---|---|---|
LWG 780 | C++98 | the merge operation was not defined | defined |
[edit] See also
merges two ordered ranges in-place (function template) | |
(C++11) |
checks whether a range is sorted into ascending order (function template) |
computes the union of two sets (function template) | |
sorts a range into ascending order (function template) | |
sorts a range of elements while preserving order between equal elements (function template) | |
(C++20) |
merges two sorted ranges (niebloid) |