1 // { dg-do run { target c++11 } }
3 // Copyright (C) 2007-2025 Free Software Foundation, Inc.
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
21 #include <testsuite_iterators.h>
22 #include <testsuite_hooks.h>
24 using __gnu_test::test_container
;
25 using __gnu_test::forward_iterator_wrapper
;
26 using std::minmax_element
;
28 typedef test_container
<int, forward_iterator_wrapper
> Container
;
29 typedef std::pair
<forward_iterator_wrapper
<int>, forward_iterator_wrapper
<int> > pair_type
;
35 Container
con(array
, array
);
36 pair_type p1
= minmax_element(con
.begin(), con
.end());
37 VERIFY( p1
.first
.ptr
== array
);
38 VERIFY( p1
.second
.ptr
== array
);
45 Container
con(array
, array
+ 1);
46 pair_type p1
= minmax_element(con
.begin(), con
.end());
47 VERIFY( p1
.first
.ptr
== array
);
48 VERIFY( p1
.second
.ptr
== array
);
55 Container
con(array
, array
+ 2);
56 pair_type p1
= minmax_element(con
.begin(), con
.end());
57 VERIFY( p1
.first
.ptr
== array
);
58 VERIFY( p1
.second
.ptr
== array
+ 1 );
65 Container
con(array
, array
+ 2);
66 pair_type p1
= minmax_element(con
.begin(), con
.end());
67 VERIFY( p1
.first
.ptr
== array
+ 1 );
68 VERIFY( p1
.second
.ptr
== array
);
75 Container
con(array
, array
+ 2);
76 pair_type p1
= minmax_element(con
.begin(), con
.end());
77 VERIFY( p1
.first
.ptr
== array
);
78 VERIFY( p1
.second
.ptr
== array
+ 1 );
84 int array
[] = {6, 3, 0, 2, 6, 4, 0};
85 Container
con(array
, array
+ 7);
86 pair_type p1
= minmax_element(con
.begin(), con
.end());
87 VERIFY( p1
.first
.ptr
== array
+ 2 );
88 VERIFY( p1
.second
.ptr
== array
+ 4 );
94 int array
[] = {4, 4, 4, 6, 6, 6, 1, 1, 0, 0, 0, 2, 2};
95 Container
con(array
, array
+ 13);
96 pair_type p1
= minmax_element(con
.begin(), con
.end());
97 VERIFY( p1
.first
.ptr
== array
+ 8 );
98 VERIFY( p1
.second
.ptr
== array
+ 5 );
104 int array
[] = {1, 7, 5, 5, 10, 1, 0, 0, 8, 4, 4, 0, 10, 10, 10, 1};
105 Container
con(array
, array
+ 16);
106 pair_type p1
= minmax_element(con
.begin(), con
.end());
107 VERIFY( p1
.first
.ptr
== array
+ 6 );
108 VERIFY( p1
.second
.ptr
== array
+ 14 );