1 // Copyright (C) 2005-2025 Free Software Foundation, Inc.
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
18 // 25.3.4 [lib.alg.merge]
20 // <testsuite_new_operators.h> requires malloc/free.
21 // { dg-require-effective-target hosted }
24 #include <testsuite_hooks.h>
25 #include <testsuite_iterators.h>
26 #include <testsuite_new_operators.h>
28 using __gnu_test::test_container
;
29 using __gnu_test::bidirectional_iterator_wrapper
;
30 using std::inplace_merge
;
32 typedef test_container
<int, bidirectional_iterator_wrapper
> container
;
38 container
con1(array
, array
);
39 inplace_merge(con1
.begin(), con1
.end(), con1
.end());
40 container
con2(array
, array
+ 1);
41 inplace_merge(con2
.begin(), con2
.end(), con2
.end());
42 inplace_merge(con2
.begin(), con2
.begin(), con2
.end());
48 int array
[] = { 0, 2, 4, 1, 3, 5 };
49 container
con(array
, array
+ 6);
50 inplace_merge(con
.begin(), con
.it(3), con
.end());
51 VERIFY( array
[0] == 0 && array
[1] == 1 && array
[2] == 2
52 && array
[3] == 3 && array
[4] == 4 && array
[5] == 5 );
59 S(int _a
, int _b
) : a(_a
), b(_b
) { }
62 operator<(const S
& _s
) const
88 inplace_merge(s
, s
+ 4, s
+ 8);
89 VERIFY( s
[0].b
== 0 && s
[1].b
== 4 && s
[2].b
== 1 && s
[3].b
== 5 );
96 for (int pivot_idx
= 0; pivot_idx
< 8; ++pivot_idx
)
99 for (int i
= 0; i
!= pivot_idx
; ++i
)
105 for (int i
= pivot_idx
; i
!= 8; ++i
)
107 s
[i
].a
= i
- pivot_idx
;
111 inplace_merge(s
, s
+ pivot_idx
, s
+ 8);
113 for (int i
= 1; i
< 8; ++i
)
115 VERIFY( !(s
[i
] < s
[i
- 1]) );
116 if (s
[i
- 1].a
== s
[i
].a
)
117 VERIFY( s
[i
- 1].b
< s
[i
].b
);
129 __gnu_test::set_new_limit(sizeof(S
) * 4);
133 __gnu_test::set_new_limit(sizeof(S
));
137 __gnu_test::set_new_limit(0);