1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++03, c++11, c++14
// UNSUPPORTED: libcpp-has-no-incomplete-pstl
// template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2,
// class ForwardIterator>
// ForwardIterator
// merge(ExecutionPolicy&& exec,
// ForwardIterator1 first1, ForwardIterator1 last1,
// ForwardIterator2 first2, ForwardIterator2 last2,
// ForwardIterator result);
//
// template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2,
// class ForwardIterator, class Compare>
// ForwardIterator
// merge(ExecutionPolicy&& exec,
// ForwardIterator1 first1, ForwardIterator1 last1,
// ForwardIterator2 first2, ForwardIterator2 last2,
// ForwardIterator result, Compare comp);
#include <algorithm>
#include <array>
#include <cassert>
#include <iterator>
#include <numeric>
#include <vector>
#include "type_algorithms.h"
#include "test_execution_policies.h"
#include "test_iterators.h"
template <class Iter1, class Iter2>
struct Test {
template <class Policy>
void operator()(Policy&& policy) {
{ // simple test
int a[] = {1, 3, 5, 7, 9};
int b[] = {2, 4, 6, 8, 10};
std::array<int, std::size(a) + std::size(b)> out;
std::merge(
policy, Iter1(std::begin(a)), Iter1(std::end(a)), Iter2(std::begin(b)), Iter2(std::end(b)), std::begin(out));
assert((out == std::array{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}));
}
{ // check that it works with both ranges being empty
std::array<int, 0> a;
std::array<int, 0> b;
std::array<int, std::size(a) + std::size(b)> out;
std::merge(policy,
Iter1(std::data(a)),
Iter1(std::data(a) + std::size(a)),
Iter2(std::data(b)),
Iter2(std::data(b) + std::size(b)),
std::begin(out));
}
{ // check that it works with the first range being empty
std::array<int, 0> a;
int b[] = {2, 4, 6, 8, 10};
std::array<int, std::size(a) + std::size(b)> out;
std::merge(policy,
Iter1(std::data(a)),
Iter1(std::data(a) + std::size(a)),
Iter2(std::begin(b)),
Iter2(std::end(b)),
std::begin(out));
assert((out == std::array{2, 4, 6, 8, 10}));
}
{ // check that it works with the second range being empty
int a[] = {2, 4, 6, 8, 10};
std::array<int, 0> b;
std::array<int, std::size(a) + std::size(b)> out;
std::merge(policy,
Iter1(std::begin(a)),
Iter1(std::end(a)),
Iter2(std::data(b)),
Iter2(std::data(b) + std::size(b)),
std::begin(out));
assert((out == std::array{2, 4, 6, 8, 10}));
}
{ // check that it works when the ranges don't have the same length
int a[] = {2, 4, 6, 8, 10};
int b[] = {3, 4};
std::array<int, std::size(a) + std::size(b)> out;
std::merge(
policy, Iter1(std::begin(a)), Iter1(std::end(a)), Iter2(std::begin(b)), Iter2(std::end(b)), std::begin(out));
assert((out == std::array{2, 3, 4, 4, 6, 8, 10}));
}
{ // check that large ranges work
std::vector<int> a(100);
std::vector<int> b(100);
{
int i = 0;
for (auto& e : a) {
e = i;
i += 2;
}
}
{
int i = 1;
for (auto& e : b) {
e = i;
i += 2;
}
}
std::vector<int> out(std::size(a) + std::size(b));
std::merge(policy,
Iter1(a.data()),
Iter1(a.data() + a.size()),
Iter2(b.data()),
Iter2(b.data() + b.size()),
std::begin(out));
std::vector<int> expected(200);
std::iota(expected.begin(), expected.end(), 0);
assert(std::equal(out.begin(), out.end(), expected.begin()));
}
{ // check that the predicate is used
int a[] = {10, 9, 8, 7};
int b[] = {8, 4, 3};
std::array<int, std::size(a) + std::size(b)> out;
std::merge(
policy,
Iter1(std::begin(a)),
Iter1(std::end(a)),
Iter2(std::begin(b)),
Iter2(std::end(b)),
std::begin(out),
std::greater{});
assert((out == std::array{10, 9, 8, 8, 7, 4, 3}));
}
}
};
int main(int, char**) {
types::for_each(types::forward_iterator_list<int*>{}, types::apply_type_identity{[](auto v) {
using Iter = typename decltype(v)::type;
types::for_each(
types::forward_iterator_list<int*>{},
TestIteratorWithPolicies<types::partial_instantiation<Test, Iter>::template apply>{});
}});
return 0;
}
|