//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template // requires LessThanComparable // pair // minmax_element(Iter first, Iter last); #include #include #include "test_iterators.h" template void test(Iter first, Iter last) { std::pair p = std::minmax_element(first, last); if (first != last) { for (Iter j = first; j != last; ++j) { assert(!(*j < *p.first)); assert(!(*p.second < *j)); } } else { assert(p.first == last); assert(p.second == last); } } template void test(unsigned N) { int* a = new int[N]; for (int i = 0; i < N; ++i) a[i] = i; std::random_shuffle(a, a+N); test(Iter(a), Iter(a+N)); delete [] a; } template void test() { test(0); test(1); test(2); test(3); test(10); test(1000); { const unsigned N = 100; int* a = new int[N]; for (int i = 0; i < N; ++i) a[i] = 5; std::random_shuffle(a, a+N); std::pair p = std::minmax_element(Iter(a), Iter(a+N)); assert(base(p.first) == a); assert(base(p.second) == a+N-1); delete [] a; } } #if __cplusplus >= 201402L constexpr int il[] = { 2, 4, 6, 8, 7, 5, 3, 1 }; #endif void constexpr_test() { #if __cplusplus >= 201402L constexpr auto p = std::minmax_element(il, il+8); static_assert ( *(p.first) == 1, "" ); static_assert ( *(p.second) == 8, "" ); #endif } int main() { test >(); test >(); test >(); test(); constexpr_test(); }