Difference between revisions of "cpp/algorithm/merge"
(Added LWG issue #780 DR.) |
m (Minor fix.) |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 3: | Line 3: | ||
{{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, | ||
InputIt2 first2, InputIt2 last2, | InputIt2 first2, InputIt2 last2, | ||
OutputIt d_first ); | OutputIt d_first ); | ||
− | |||
− | |||
− | |||
− | |||
− | |||
}} | }} | ||
{{dcl|num=2|since=c++17| | {{dcl|num=2|since=c++17| | ||
− | template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2, | + | template< class ExecutionPolicy, |
− | + | class ForwardIt1, class ForwardIt2, class ForwardIt3 > | |
ForwardIt3 merge( ExecutionPolicy&& policy, | ForwardIt3 merge( ExecutionPolicy&& policy, | ||
ForwardIt1 first1, ForwardIt1 last1, | ForwardIt1 first1, ForwardIt1 last1, | ||
Line 23: | Line 17: | ||
ForwardIt3 d_first ); | ForwardIt3 d_first ); | ||
}} | }} | ||
− | {{ | + | {{dcla|num=3|notes={{mark constexpr since c++20}}| |
− | | | + | template< class InputIt1, class InputIt2, |
− | template< class InputIt1, class InputIt2, class OutputIt, class Compare > | + | 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| | {{dcl|num=4|since=c++17| | ||
− | template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2, | + | template< class ExecutionPolicy, |
− | class ForwardIt3, class Compare> | + | class ForwardIt1, class ForwardIt2, |
+ | class ForwardIt3, class Compare > | ||
ForwardIt3 merge( ExecutionPolicy&& policy, | ForwardIt3 merge( ExecutionPolicy&& policy, | ||
ForwardIt1 first1, ForwardIt1 last1, | ForwardIt1 first1, ForwardIt1 last1, | ||
Line 45: | Line 35: | ||
{{dcl end}} | {{dcl end}} | ||
− | Merges two | + | 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. | |
− | @3@ | + | |
− | + | ||
− | + | @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=== | ||
Line 68: | Line 59: | ||
{{par req named|ForwardIt1, ForwardIt2, ForwardIt3|ForwardIterator}} | {{par req named|ForwardIt1, ForwardIt2, ForwardIt3|ForwardIterator}} | ||
{{par req named|OutputIt|OutputIterator}} | {{par req named|OutputIt|OutputIterator}} | ||
+ | {{par req named|Compare|Compare}} | ||
{{par end}} | {{par end}} | ||
Line 74: | Line 66: | ||
===Complexity=== | ===Complexity=== | ||
− | Given {{ | + | 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@ | + | |
− | @2@ {{ | + | @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{}<!---->}}}}. |
− | @3@ | + | |
− | @4@ {{ | + | @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=== | ===Exceptions=== | ||
{{cpp/algorithm/parallel exceptions reporting behavior|singular=no}} | {{cpp/algorithm/parallel exceptions reporting behavior|singular=no}} | ||
− | |||
− | |||
− | |||
===Possible implementation=== | ===Possible implementation=== | ||
Line 139: | 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=== | ||
Line 151: | Line 147: | ||
#include <vector> | #include <vector> | ||
− | auto print = []( | + | auto print = [](const auto rem, const auto& v) |
{ | { | ||
std::cout << rem; | std::cout << rem; |
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) |