PR64903 fix number of predicate tests in std::is_partitioned
[official-gcc.git] / libstdc++-v3 / include / bits / stl_algo.h
blob8cf85aa02f2bdaa934859179c5895cfc8c92ea48
1 // Algorithm implementation -*- C++ -*-
3 // Copyright (C) 2001-2017 Free Software Foundation, Inc.
4 //
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)
9 // any later version.
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 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
27 * Copyright (c) 1994
28 * Hewlett-Packard Company
30 * Permission to use, copy, modify, distribute and sell this software
31 * and its documentation for any purpose is hereby granted without fee,
32 * provided that the above copyright notice appear in all copies and
33 * that both that copyright notice and this permission notice appear
34 * in supporting documentation. Hewlett-Packard Company makes no
35 * representations about the suitability of this software for any
36 * purpose. It is provided "as is" without express or implied warranty.
39 * Copyright (c) 1996
40 * Silicon Graphics Computer Systems, Inc.
42 * Permission to use, copy, modify, distribute and sell this software
43 * and its documentation for any purpose is hereby granted without fee,
44 * provided that the above copyright notice appear in all copies and
45 * that both that copyright notice and this permission notice appear
46 * in supporting documentation. Silicon Graphics makes no
47 * representations about the suitability of this software for any
48 * purpose. It is provided "as is" without express or implied warranty.
51 /** @file bits/stl_algo.h
52 * This is an internal header file, included by other library headers.
53 * Do not attempt to use it directly. @headername{algorithm}
56 #ifndef _STL_ALGO_H
57 #define _STL_ALGO_H 1
59 #include <cstdlib> // for rand
60 #include <bits/algorithmfwd.h>
61 #include <bits/stl_heap.h>
62 #include <bits/stl_tempbuf.h> // for _Temporary_buffer
63 #include <bits/predefined_ops.h>
65 #if __cplusplus >= 201103L
66 #include <bits/uniform_int_dist.h>
67 #endif
69 // See concept_check.h for the __glibcxx_*_requires macros.
71 namespace std _GLIBCXX_VISIBILITY(default)
73 _GLIBCXX_BEGIN_NAMESPACE_VERSION
75 /// Swaps the median value of *__a, *__b and *__c under __comp to *__result
76 template<typename _Iterator, typename _Compare>
77 void
78 __move_median_to_first(_Iterator __result,_Iterator __a, _Iterator __b,
79 _Iterator __c, _Compare __comp)
81 if (__comp(__a, __b))
83 if (__comp(__b, __c))
84 std::iter_swap(__result, __b);
85 else if (__comp(__a, __c))
86 std::iter_swap(__result, __c);
87 else
88 std::iter_swap(__result, __a);
90 else if (__comp(__a, __c))
91 std::iter_swap(__result, __a);
92 else if (__comp(__b, __c))
93 std::iter_swap(__result, __c);
94 else
95 std::iter_swap(__result, __b);
98 /// This is an overload used by find algos for the Input Iterator case.
99 template<typename _InputIterator, typename _Predicate>
100 inline _InputIterator
101 __find_if(_InputIterator __first, _InputIterator __last,
102 _Predicate __pred, input_iterator_tag)
104 while (__first != __last && !__pred(__first))
105 ++__first;
106 return __first;
109 /// This is an overload used by find algos for the RAI case.
110 template<typename _RandomAccessIterator, typename _Predicate>
111 _RandomAccessIterator
112 __find_if(_RandomAccessIterator __first, _RandomAccessIterator __last,
113 _Predicate __pred, random_access_iterator_tag)
115 typename iterator_traits<_RandomAccessIterator>::difference_type
116 __trip_count = (__last - __first) >> 2;
118 for (; __trip_count > 0; --__trip_count)
120 if (__pred(__first))
121 return __first;
122 ++__first;
124 if (__pred(__first))
125 return __first;
126 ++__first;
128 if (__pred(__first))
129 return __first;
130 ++__first;
132 if (__pred(__first))
133 return __first;
134 ++__first;
137 switch (__last - __first)
139 case 3:
140 if (__pred(__first))
141 return __first;
142 ++__first;
143 case 2:
144 if (__pred(__first))
145 return __first;
146 ++__first;
147 case 1:
148 if (__pred(__first))
149 return __first;
150 ++__first;
151 case 0:
152 default:
153 return __last;
157 template<typename _Iterator, typename _Predicate>
158 inline _Iterator
159 __find_if(_Iterator __first, _Iterator __last, _Predicate __pred)
161 return __find_if(__first, __last, __pred,
162 std::__iterator_category(__first));
165 /// Provided for stable_partition to use.
166 template<typename _InputIterator, typename _Predicate>
167 inline _InputIterator
168 __find_if_not(_InputIterator __first, _InputIterator __last,
169 _Predicate __pred)
171 return std::__find_if(__first, __last,
172 __gnu_cxx::__ops::__negate(__pred),
173 std::__iterator_category(__first));
176 /// Like find_if_not(), but uses and updates a count of the
177 /// remaining range length instead of comparing against an end
178 /// iterator.
179 template<typename _InputIterator, typename _Predicate, typename _Distance>
180 _InputIterator
181 __find_if_not_n(_InputIterator __first, _Distance& __len, _Predicate __pred)
183 for (; __len; --__len, ++__first)
184 if (!__pred(__first))
185 break;
186 return __first;
189 // set_difference
190 // set_intersection
191 // set_symmetric_difference
192 // set_union
193 // for_each
194 // find
195 // find_if
196 // find_first_of
197 // adjacent_find
198 // count
199 // count_if
200 // search
202 template<typename _ForwardIterator1, typename _ForwardIterator2,
203 typename _BinaryPredicate>
204 _ForwardIterator1
205 __search(_ForwardIterator1 __first1, _ForwardIterator1 __last1,
206 _ForwardIterator2 __first2, _ForwardIterator2 __last2,
207 _BinaryPredicate __predicate)
209 // Test for empty ranges
210 if (__first1 == __last1 || __first2 == __last2)
211 return __first1;
213 // Test for a pattern of length 1.
214 _ForwardIterator2 __p1(__first2);
215 if (++__p1 == __last2)
216 return std::__find_if(__first1, __last1,
217 __gnu_cxx::__ops::__iter_comp_iter(__predicate, __first2));
219 // General case.
220 _ForwardIterator2 __p;
221 _ForwardIterator1 __current = __first1;
223 for (;;)
225 __first1 =
226 std::__find_if(__first1, __last1,
227 __gnu_cxx::__ops::__iter_comp_iter(__predicate, __first2));
229 if (__first1 == __last1)
230 return __last1;
232 __p = __p1;
233 __current = __first1;
234 if (++__current == __last1)
235 return __last1;
237 while (__predicate(__current, __p))
239 if (++__p == __last2)
240 return __first1;
241 if (++__current == __last1)
242 return __last1;
244 ++__first1;
246 return __first1;
249 // search_n
252 * This is an helper function for search_n overloaded for forward iterators.
254 template<typename _ForwardIterator, typename _Integer,
255 typename _UnaryPredicate>
256 _ForwardIterator
257 __search_n_aux(_ForwardIterator __first, _ForwardIterator __last,
258 _Integer __count, _UnaryPredicate __unary_pred,
259 std::forward_iterator_tag)
261 __first = std::__find_if(__first, __last, __unary_pred);
262 while (__first != __last)
264 typename iterator_traits<_ForwardIterator>::difference_type
265 __n = __count;
266 _ForwardIterator __i = __first;
267 ++__i;
268 while (__i != __last && __n != 1 && __unary_pred(__i))
270 ++__i;
271 --__n;
273 if (__n == 1)
274 return __first;
275 if (__i == __last)
276 return __last;
277 __first = std::__find_if(++__i, __last, __unary_pred);
279 return __last;
283 * This is an helper function for search_n overloaded for random access
284 * iterators.
286 template<typename _RandomAccessIter, typename _Integer,
287 typename _UnaryPredicate>
288 _RandomAccessIter
289 __search_n_aux(_RandomAccessIter __first, _RandomAccessIter __last,
290 _Integer __count, _UnaryPredicate __unary_pred,
291 std::random_access_iterator_tag)
293 typedef typename std::iterator_traits<_RandomAccessIter>::difference_type
294 _DistanceType;
296 _DistanceType __tailSize = __last - __first;
297 _DistanceType __remainder = __count;
299 while (__remainder <= __tailSize) // the main loop...
301 __first += __remainder;
302 __tailSize -= __remainder;
303 // __first here is always pointing to one past the last element of
304 // next possible match.
305 _RandomAccessIter __backTrack = __first;
306 while (__unary_pred(--__backTrack))
308 if (--__remainder == 0)
309 return (__first - __count); // Success
311 __remainder = __count + 1 - (__first - __backTrack);
313 return __last; // Failure
316 template<typename _ForwardIterator, typename _Integer,
317 typename _UnaryPredicate>
318 _ForwardIterator
319 __search_n(_ForwardIterator __first, _ForwardIterator __last,
320 _Integer __count,
321 _UnaryPredicate __unary_pred)
323 if (__count <= 0)
324 return __first;
326 if (__count == 1)
327 return std::__find_if(__first, __last, __unary_pred);
329 return std::__search_n_aux(__first, __last, __count, __unary_pred,
330 std::__iterator_category(__first));
333 // find_end for forward iterators.
334 template<typename _ForwardIterator1, typename _ForwardIterator2,
335 typename _BinaryPredicate>
336 _ForwardIterator1
337 __find_end(_ForwardIterator1 __first1, _ForwardIterator1 __last1,
338 _ForwardIterator2 __first2, _ForwardIterator2 __last2,
339 forward_iterator_tag, forward_iterator_tag,
340 _BinaryPredicate __comp)
342 if (__first2 == __last2)
343 return __last1;
345 _ForwardIterator1 __result = __last1;
346 while (1)
348 _ForwardIterator1 __new_result
349 = std::__search(__first1, __last1, __first2, __last2, __comp);
350 if (__new_result == __last1)
351 return __result;
352 else
354 __result = __new_result;
355 __first1 = __new_result;
356 ++__first1;
361 // find_end for bidirectional iterators (much faster).
362 template<typename _BidirectionalIterator1, typename _BidirectionalIterator2,
363 typename _BinaryPredicate>
364 _BidirectionalIterator1
365 __find_end(_BidirectionalIterator1 __first1,
366 _BidirectionalIterator1 __last1,
367 _BidirectionalIterator2 __first2,
368 _BidirectionalIterator2 __last2,
369 bidirectional_iterator_tag, bidirectional_iterator_tag,
370 _BinaryPredicate __comp)
372 // concept requirements
373 __glibcxx_function_requires(_BidirectionalIteratorConcept<
374 _BidirectionalIterator1>)
375 __glibcxx_function_requires(_BidirectionalIteratorConcept<
376 _BidirectionalIterator2>)
378 typedef reverse_iterator<_BidirectionalIterator1> _RevIterator1;
379 typedef reverse_iterator<_BidirectionalIterator2> _RevIterator2;
381 _RevIterator1 __rlast1(__first1);
382 _RevIterator2 __rlast2(__first2);
383 _RevIterator1 __rresult = std::__search(_RevIterator1(__last1), __rlast1,
384 _RevIterator2(__last2), __rlast2,
385 __comp);
387 if (__rresult == __rlast1)
388 return __last1;
389 else
391 _BidirectionalIterator1 __result = __rresult.base();
392 std::advance(__result, -std::distance(__first2, __last2));
393 return __result;
398 * @brief Find last matching subsequence in a sequence.
399 * @ingroup non_mutating_algorithms
400 * @param __first1 Start of range to search.
401 * @param __last1 End of range to search.
402 * @param __first2 Start of sequence to match.
403 * @param __last2 End of sequence to match.
404 * @return The last iterator @c i in the range
405 * @p [__first1,__last1-(__last2-__first2)) such that @c *(i+N) ==
406 * @p *(__first2+N) for each @c N in the range @p
407 * [0,__last2-__first2), or @p __last1 if no such iterator exists.
409 * Searches the range @p [__first1,__last1) for a sub-sequence that
410 * compares equal value-by-value with the sequence given by @p
411 * [__first2,__last2) and returns an iterator to the __first
412 * element of the sub-sequence, or @p __last1 if the sub-sequence
413 * is not found. The sub-sequence will be the last such
414 * subsequence contained in [__first1,__last1).
416 * Because the sub-sequence must lie completely within the range @p
417 * [__first1,__last1) it must start at a position less than @p
418 * __last1-(__last2-__first2) where @p __last2-__first2 is the
419 * length of the sub-sequence. This means that the returned
420 * iterator @c i will be in the range @p
421 * [__first1,__last1-(__last2-__first2))
423 template<typename _ForwardIterator1, typename _ForwardIterator2>
424 inline _ForwardIterator1
425 find_end(_ForwardIterator1 __first1, _ForwardIterator1 __last1,
426 _ForwardIterator2 __first2, _ForwardIterator2 __last2)
428 // concept requirements
429 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator1>)
430 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator2>)
431 __glibcxx_function_requires(_EqualOpConcept<
432 typename iterator_traits<_ForwardIterator1>::value_type,
433 typename iterator_traits<_ForwardIterator2>::value_type>)
434 __glibcxx_requires_valid_range(__first1, __last1);
435 __glibcxx_requires_valid_range(__first2, __last2);
437 return std::__find_end(__first1, __last1, __first2, __last2,
438 std::__iterator_category(__first1),
439 std::__iterator_category(__first2),
440 __gnu_cxx::__ops::__iter_equal_to_iter());
444 * @brief Find last matching subsequence in a sequence using a predicate.
445 * @ingroup non_mutating_algorithms
446 * @param __first1 Start of range to search.
447 * @param __last1 End of range to search.
448 * @param __first2 Start of sequence to match.
449 * @param __last2 End of sequence to match.
450 * @param __comp The predicate to use.
451 * @return The last iterator @c i in the range @p
452 * [__first1,__last1-(__last2-__first2)) such that @c
453 * predicate(*(i+N), @p (__first2+N)) is true for each @c N in the
454 * range @p [0,__last2-__first2), or @p __last1 if no such iterator
455 * exists.
457 * Searches the range @p [__first1,__last1) for a sub-sequence that
458 * compares equal value-by-value with the sequence given by @p
459 * [__first2,__last2) using comp as a predicate and returns an
460 * iterator to the first element of the sub-sequence, or @p __last1
461 * if the sub-sequence is not found. The sub-sequence will be the
462 * last such subsequence contained in [__first,__last1).
464 * Because the sub-sequence must lie completely within the range @p
465 * [__first1,__last1) it must start at a position less than @p
466 * __last1-(__last2-__first2) where @p __last2-__first2 is the
467 * length of the sub-sequence. This means that the returned
468 * iterator @c i will be in the range @p
469 * [__first1,__last1-(__last2-__first2))
471 template<typename _ForwardIterator1, typename _ForwardIterator2,
472 typename _BinaryPredicate>
473 inline _ForwardIterator1
474 find_end(_ForwardIterator1 __first1, _ForwardIterator1 __last1,
475 _ForwardIterator2 __first2, _ForwardIterator2 __last2,
476 _BinaryPredicate __comp)
478 // concept requirements
479 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator1>)
480 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator2>)
481 __glibcxx_function_requires(_BinaryPredicateConcept<_BinaryPredicate,
482 typename iterator_traits<_ForwardIterator1>::value_type,
483 typename iterator_traits<_ForwardIterator2>::value_type>)
484 __glibcxx_requires_valid_range(__first1, __last1);
485 __glibcxx_requires_valid_range(__first2, __last2);
487 return std::__find_end(__first1, __last1, __first2, __last2,
488 std::__iterator_category(__first1),
489 std::__iterator_category(__first2),
490 __gnu_cxx::__ops::__iter_comp_iter(__comp));
493 #if __cplusplus >= 201103L
495 * @brief Checks that a predicate is true for all the elements
496 * of a sequence.
497 * @ingroup non_mutating_algorithms
498 * @param __first An input iterator.
499 * @param __last An input iterator.
500 * @param __pred A predicate.
501 * @return True if the check is true, false otherwise.
503 * Returns true if @p __pred is true for each element in the range
504 * @p [__first,__last), and false otherwise.
506 template<typename _InputIterator, typename _Predicate>
507 inline bool
508 all_of(_InputIterator __first, _InputIterator __last, _Predicate __pred)
509 { return __last == std::find_if_not(__first, __last, __pred); }
512 * @brief Checks that a predicate is false for all the elements
513 * of a sequence.
514 * @ingroup non_mutating_algorithms
515 * @param __first An input iterator.
516 * @param __last An input iterator.
517 * @param __pred A predicate.
518 * @return True if the check is true, false otherwise.
520 * Returns true if @p __pred is false for each element in the range
521 * @p [__first,__last), and false otherwise.
523 template<typename _InputIterator, typename _Predicate>
524 inline bool
525 none_of(_InputIterator __first, _InputIterator __last, _Predicate __pred)
526 { return __last == _GLIBCXX_STD_A::find_if(__first, __last, __pred); }
529 * @brief Checks that a predicate is false for at least an element
530 * of a sequence.
531 * @ingroup non_mutating_algorithms
532 * @param __first An input iterator.
533 * @param __last An input iterator.
534 * @param __pred A predicate.
535 * @return True if the check is true, false otherwise.
537 * Returns true if an element exists in the range @p
538 * [__first,__last) such that @p __pred is true, and false
539 * otherwise.
541 template<typename _InputIterator, typename _Predicate>
542 inline bool
543 any_of(_InputIterator __first, _InputIterator __last, _Predicate __pred)
544 { return !std::none_of(__first, __last, __pred); }
547 * @brief Find the first element in a sequence for which a
548 * predicate is false.
549 * @ingroup non_mutating_algorithms
550 * @param __first An input iterator.
551 * @param __last An input iterator.
552 * @param __pred A predicate.
553 * @return The first iterator @c i in the range @p [__first,__last)
554 * such that @p __pred(*i) is false, or @p __last if no such iterator exists.
556 template<typename _InputIterator, typename _Predicate>
557 inline _InputIterator
558 find_if_not(_InputIterator __first, _InputIterator __last,
559 _Predicate __pred)
561 // concept requirements
562 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
563 __glibcxx_function_requires(_UnaryPredicateConcept<_Predicate,
564 typename iterator_traits<_InputIterator>::value_type>)
565 __glibcxx_requires_valid_range(__first, __last);
566 return std::__find_if_not(__first, __last,
567 __gnu_cxx::__ops::__pred_iter(__pred));
571 * @brief Checks whether the sequence is partitioned.
572 * @ingroup mutating_algorithms
573 * @param __first An input iterator.
574 * @param __last An input iterator.
575 * @param __pred A predicate.
576 * @return True if the range @p [__first,__last) is partioned by @p __pred,
577 * i.e. if all elements that satisfy @p __pred appear before those that
578 * do not.
580 template<typename _InputIterator, typename _Predicate>
581 inline bool
582 is_partitioned(_InputIterator __first, _InputIterator __last,
583 _Predicate __pred)
585 __first = std::find_if_not(__first, __last, __pred);
586 if (__first == __last)
587 return true;
588 std::advance(__first, 1);
589 return std::none_of(__first, __last, __pred);
593 * @brief Find the partition point of a partitioned range.
594 * @ingroup mutating_algorithms
595 * @param __first An iterator.
596 * @param __last Another iterator.
597 * @param __pred A predicate.
598 * @return An iterator @p mid such that @p all_of(__first, mid, __pred)
599 * and @p none_of(mid, __last, __pred) are both true.
601 template<typename _ForwardIterator, typename _Predicate>
602 _ForwardIterator
603 partition_point(_ForwardIterator __first, _ForwardIterator __last,
604 _Predicate __pred)
606 // concept requirements
607 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
608 __glibcxx_function_requires(_UnaryPredicateConcept<_Predicate,
609 typename iterator_traits<_ForwardIterator>::value_type>)
611 // A specific debug-mode test will be necessary...
612 __glibcxx_requires_valid_range(__first, __last);
614 typedef typename iterator_traits<_ForwardIterator>::difference_type
615 _DistanceType;
617 _DistanceType __len = std::distance(__first, __last);
618 _DistanceType __half;
619 _ForwardIterator __middle;
621 while (__len > 0)
623 __half = __len >> 1;
624 __middle = __first;
625 std::advance(__middle, __half);
626 if (__pred(*__middle))
628 __first = __middle;
629 ++__first;
630 __len = __len - __half - 1;
632 else
633 __len = __half;
635 return __first;
637 #endif
639 template<typename _InputIterator, typename _OutputIterator,
640 typename _Predicate>
641 _OutputIterator
642 __remove_copy_if(_InputIterator __first, _InputIterator __last,
643 _OutputIterator __result, _Predicate __pred)
645 for (; __first != __last; ++__first)
646 if (!__pred(__first))
648 *__result = *__first;
649 ++__result;
651 return __result;
655 * @brief Copy a sequence, removing elements of a given value.
656 * @ingroup mutating_algorithms
657 * @param __first An input iterator.
658 * @param __last An input iterator.
659 * @param __result An output iterator.
660 * @param __value The value to be removed.
661 * @return An iterator designating the end of the resulting sequence.
663 * Copies each element in the range @p [__first,__last) not equal
664 * to @p __value to the range beginning at @p __result.
665 * remove_copy() is stable, so the relative order of elements that
666 * are copied is unchanged.
668 template<typename _InputIterator, typename _OutputIterator, typename _Tp>
669 inline _OutputIterator
670 remove_copy(_InputIterator __first, _InputIterator __last,
671 _OutputIterator __result, const _Tp& __value)
673 // concept requirements
674 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
675 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
676 typename iterator_traits<_InputIterator>::value_type>)
677 __glibcxx_function_requires(_EqualOpConcept<
678 typename iterator_traits<_InputIterator>::value_type, _Tp>)
679 __glibcxx_requires_valid_range(__first, __last);
681 return std::__remove_copy_if(__first, __last, __result,
682 __gnu_cxx::__ops::__iter_equals_val(__value));
686 * @brief Copy a sequence, removing elements for which a predicate is true.
687 * @ingroup mutating_algorithms
688 * @param __first An input iterator.
689 * @param __last An input iterator.
690 * @param __result An output iterator.
691 * @param __pred A predicate.
692 * @return An iterator designating the end of the resulting sequence.
694 * Copies each element in the range @p [__first,__last) for which
695 * @p __pred returns false to the range beginning at @p __result.
697 * remove_copy_if() is stable, so the relative order of elements that are
698 * copied is unchanged.
700 template<typename _InputIterator, typename _OutputIterator,
701 typename _Predicate>
702 inline _OutputIterator
703 remove_copy_if(_InputIterator __first, _InputIterator __last,
704 _OutputIterator __result, _Predicate __pred)
706 // concept requirements
707 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
708 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
709 typename iterator_traits<_InputIterator>::value_type>)
710 __glibcxx_function_requires(_UnaryPredicateConcept<_Predicate,
711 typename iterator_traits<_InputIterator>::value_type>)
712 __glibcxx_requires_valid_range(__first, __last);
714 return std::__remove_copy_if(__first, __last, __result,
715 __gnu_cxx::__ops::__pred_iter(__pred));
718 #if __cplusplus >= 201103L
720 * @brief Copy the elements of a sequence for which a predicate is true.
721 * @ingroup mutating_algorithms
722 * @param __first An input iterator.
723 * @param __last An input iterator.
724 * @param __result An output iterator.
725 * @param __pred A predicate.
726 * @return An iterator designating the end of the resulting sequence.
728 * Copies each element in the range @p [__first,__last) for which
729 * @p __pred returns true to the range beginning at @p __result.
731 * copy_if() is stable, so the relative order of elements that are
732 * copied is unchanged.
734 template<typename _InputIterator, typename _OutputIterator,
735 typename _Predicate>
736 _OutputIterator
737 copy_if(_InputIterator __first, _InputIterator __last,
738 _OutputIterator __result, _Predicate __pred)
740 // concept requirements
741 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
742 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
743 typename iterator_traits<_InputIterator>::value_type>)
744 __glibcxx_function_requires(_UnaryPredicateConcept<_Predicate,
745 typename iterator_traits<_InputIterator>::value_type>)
746 __glibcxx_requires_valid_range(__first, __last);
748 for (; __first != __last; ++__first)
749 if (__pred(*__first))
751 *__result = *__first;
752 ++__result;
754 return __result;
757 template<typename _InputIterator, typename _Size, typename _OutputIterator>
758 _OutputIterator
759 __copy_n(_InputIterator __first, _Size __n,
760 _OutputIterator __result, input_iterator_tag)
762 if (__n > 0)
764 while (true)
766 *__result = *__first;
767 ++__result;
768 if (--__n > 0)
769 ++__first;
770 else
771 break;
774 return __result;
777 template<typename _RandomAccessIterator, typename _Size,
778 typename _OutputIterator>
779 inline _OutputIterator
780 __copy_n(_RandomAccessIterator __first, _Size __n,
781 _OutputIterator __result, random_access_iterator_tag)
782 { return std::copy(__first, __first + __n, __result); }
785 * @brief Copies the range [first,first+n) into [result,result+n).
786 * @ingroup mutating_algorithms
787 * @param __first An input iterator.
788 * @param __n The number of elements to copy.
789 * @param __result An output iterator.
790 * @return result+n.
792 * This inline function will boil down to a call to @c memmove whenever
793 * possible. Failing that, if random access iterators are passed, then the
794 * loop count will be known (and therefore a candidate for compiler
795 * optimizations such as unrolling).
797 template<typename _InputIterator, typename _Size, typename _OutputIterator>
798 inline _OutputIterator
799 copy_n(_InputIterator __first, _Size __n, _OutputIterator __result)
801 // concept requirements
802 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
803 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
804 typename iterator_traits<_InputIterator>::value_type>)
806 return std::__copy_n(__first, __n, __result,
807 std::__iterator_category(__first));
811 * @brief Copy the elements of a sequence to separate output sequences
812 * depending on the truth value of a predicate.
813 * @ingroup mutating_algorithms
814 * @param __first An input iterator.
815 * @param __last An input iterator.
816 * @param __out_true An output iterator.
817 * @param __out_false An output iterator.
818 * @param __pred A predicate.
819 * @return A pair designating the ends of the resulting sequences.
821 * Copies each element in the range @p [__first,__last) for which
822 * @p __pred returns true to the range beginning at @p out_true
823 * and each element for which @p __pred returns false to @p __out_false.
825 template<typename _InputIterator, typename _OutputIterator1,
826 typename _OutputIterator2, typename _Predicate>
827 pair<_OutputIterator1, _OutputIterator2>
828 partition_copy(_InputIterator __first, _InputIterator __last,
829 _OutputIterator1 __out_true, _OutputIterator2 __out_false,
830 _Predicate __pred)
832 // concept requirements
833 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
834 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator1,
835 typename iterator_traits<_InputIterator>::value_type>)
836 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator2,
837 typename iterator_traits<_InputIterator>::value_type>)
838 __glibcxx_function_requires(_UnaryPredicateConcept<_Predicate,
839 typename iterator_traits<_InputIterator>::value_type>)
840 __glibcxx_requires_valid_range(__first, __last);
842 for (; __first != __last; ++__first)
843 if (__pred(*__first))
845 *__out_true = *__first;
846 ++__out_true;
848 else
850 *__out_false = *__first;
851 ++__out_false;
854 return pair<_OutputIterator1, _OutputIterator2>(__out_true, __out_false);
856 #endif
858 template<typename _ForwardIterator, typename _Predicate>
859 _ForwardIterator
860 __remove_if(_ForwardIterator __first, _ForwardIterator __last,
861 _Predicate __pred)
863 __first = std::__find_if(__first, __last, __pred);
864 if (__first == __last)
865 return __first;
866 _ForwardIterator __result = __first;
867 ++__first;
868 for (; __first != __last; ++__first)
869 if (!__pred(__first))
871 *__result = _GLIBCXX_MOVE(*__first);
872 ++__result;
874 return __result;
878 * @brief Remove elements from a sequence.
879 * @ingroup mutating_algorithms
880 * @param __first An input iterator.
881 * @param __last An input iterator.
882 * @param __value The value to be removed.
883 * @return An iterator designating the end of the resulting sequence.
885 * All elements equal to @p __value are removed from the range
886 * @p [__first,__last).
888 * remove() is stable, so the relative order of elements that are
889 * not removed is unchanged.
891 * Elements between the end of the resulting sequence and @p __last
892 * are still present, but their value is unspecified.
894 template<typename _ForwardIterator, typename _Tp>
895 inline _ForwardIterator
896 remove(_ForwardIterator __first, _ForwardIterator __last,
897 const _Tp& __value)
899 // concept requirements
900 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
901 _ForwardIterator>)
902 __glibcxx_function_requires(_EqualOpConcept<
903 typename iterator_traits<_ForwardIterator>::value_type, _Tp>)
904 __glibcxx_requires_valid_range(__first, __last);
906 return std::__remove_if(__first, __last,
907 __gnu_cxx::__ops::__iter_equals_val(__value));
911 * @brief Remove elements from a sequence using a predicate.
912 * @ingroup mutating_algorithms
913 * @param __first A forward iterator.
914 * @param __last A forward iterator.
915 * @param __pred A predicate.
916 * @return An iterator designating the end of the resulting sequence.
918 * All elements for which @p __pred returns true are removed from the range
919 * @p [__first,__last).
921 * remove_if() is stable, so the relative order of elements that are
922 * not removed is unchanged.
924 * Elements between the end of the resulting sequence and @p __last
925 * are still present, but their value is unspecified.
927 template<typename _ForwardIterator, typename _Predicate>
928 inline _ForwardIterator
929 remove_if(_ForwardIterator __first, _ForwardIterator __last,
930 _Predicate __pred)
932 // concept requirements
933 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
934 _ForwardIterator>)
935 __glibcxx_function_requires(_UnaryPredicateConcept<_Predicate,
936 typename iterator_traits<_ForwardIterator>::value_type>)
937 __glibcxx_requires_valid_range(__first, __last);
939 return std::__remove_if(__first, __last,
940 __gnu_cxx::__ops::__pred_iter(__pred));
943 template<typename _ForwardIterator, typename _BinaryPredicate>
944 _ForwardIterator
945 __adjacent_find(_ForwardIterator __first, _ForwardIterator __last,
946 _BinaryPredicate __binary_pred)
948 if (__first == __last)
949 return __last;
950 _ForwardIterator __next = __first;
951 while (++__next != __last)
953 if (__binary_pred(__first, __next))
954 return __first;
955 __first = __next;
957 return __last;
960 template<typename _ForwardIterator, typename _BinaryPredicate>
961 _ForwardIterator
962 __unique(_ForwardIterator __first, _ForwardIterator __last,
963 _BinaryPredicate __binary_pred)
965 // Skip the beginning, if already unique.
966 __first = std::__adjacent_find(__first, __last, __binary_pred);
967 if (__first == __last)
968 return __last;
970 // Do the real copy work.
971 _ForwardIterator __dest = __first;
972 ++__first;
973 while (++__first != __last)
974 if (!__binary_pred(__dest, __first))
975 *++__dest = _GLIBCXX_MOVE(*__first);
976 return ++__dest;
980 * @brief Remove consecutive duplicate values from a sequence.
981 * @ingroup mutating_algorithms
982 * @param __first A forward iterator.
983 * @param __last A forward iterator.
984 * @return An iterator designating the end of the resulting sequence.
986 * Removes all but the first element from each group of consecutive
987 * values that compare equal.
988 * unique() is stable, so the relative order of elements that are
989 * not removed is unchanged.
990 * Elements between the end of the resulting sequence and @p __last
991 * are still present, but their value is unspecified.
993 template<typename _ForwardIterator>
994 inline _ForwardIterator
995 unique(_ForwardIterator __first, _ForwardIterator __last)
997 // concept requirements
998 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
999 _ForwardIterator>)
1000 __glibcxx_function_requires(_EqualityComparableConcept<
1001 typename iterator_traits<_ForwardIterator>::value_type>)
1002 __glibcxx_requires_valid_range(__first, __last);
1004 return std::__unique(__first, __last,
1005 __gnu_cxx::__ops::__iter_equal_to_iter());
1009 * @brief Remove consecutive values from a sequence using a predicate.
1010 * @ingroup mutating_algorithms
1011 * @param __first A forward iterator.
1012 * @param __last A forward iterator.
1013 * @param __binary_pred A binary predicate.
1014 * @return An iterator designating the end of the resulting sequence.
1016 * Removes all but the first element from each group of consecutive
1017 * values for which @p __binary_pred returns true.
1018 * unique() is stable, so the relative order of elements that are
1019 * not removed is unchanged.
1020 * Elements between the end of the resulting sequence and @p __last
1021 * are still present, but their value is unspecified.
1023 template<typename _ForwardIterator, typename _BinaryPredicate>
1024 inline _ForwardIterator
1025 unique(_ForwardIterator __first, _ForwardIterator __last,
1026 _BinaryPredicate __binary_pred)
1028 // concept requirements
1029 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
1030 _ForwardIterator>)
1031 __glibcxx_function_requires(_BinaryPredicateConcept<_BinaryPredicate,
1032 typename iterator_traits<_ForwardIterator>::value_type,
1033 typename iterator_traits<_ForwardIterator>::value_type>)
1034 __glibcxx_requires_valid_range(__first, __last);
1036 return std::__unique(__first, __last,
1037 __gnu_cxx::__ops::__iter_comp_iter(__binary_pred));
1041 * This is an uglified
1042 * unique_copy(_InputIterator, _InputIterator, _OutputIterator,
1043 * _BinaryPredicate)
1044 * overloaded for forward iterators and output iterator as result.
1046 template<typename _ForwardIterator, typename _OutputIterator,
1047 typename _BinaryPredicate>
1048 _OutputIterator
1049 __unique_copy(_ForwardIterator __first, _ForwardIterator __last,
1050 _OutputIterator __result, _BinaryPredicate __binary_pred,
1051 forward_iterator_tag, output_iterator_tag)
1053 // concept requirements -- iterators already checked
1054 __glibcxx_function_requires(_BinaryPredicateConcept<_BinaryPredicate,
1055 typename iterator_traits<_ForwardIterator>::value_type,
1056 typename iterator_traits<_ForwardIterator>::value_type>)
1058 _ForwardIterator __next = __first;
1059 *__result = *__first;
1060 while (++__next != __last)
1061 if (!__binary_pred(__first, __next))
1063 __first = __next;
1064 *++__result = *__first;
1066 return ++__result;
1070 * This is an uglified
1071 * unique_copy(_InputIterator, _InputIterator, _OutputIterator,
1072 * _BinaryPredicate)
1073 * overloaded for input iterators and output iterator as result.
1075 template<typename _InputIterator, typename _OutputIterator,
1076 typename _BinaryPredicate>
1077 _OutputIterator
1078 __unique_copy(_InputIterator __first, _InputIterator __last,
1079 _OutputIterator __result, _BinaryPredicate __binary_pred,
1080 input_iterator_tag, output_iterator_tag)
1082 // concept requirements -- iterators already checked
1083 __glibcxx_function_requires(_BinaryPredicateConcept<_BinaryPredicate,
1084 typename iterator_traits<_InputIterator>::value_type,
1085 typename iterator_traits<_InputIterator>::value_type>)
1087 typename iterator_traits<_InputIterator>::value_type __value = *__first;
1088 __decltype(__gnu_cxx::__ops::__iter_comp_val(__binary_pred))
1089 __rebound_pred
1090 = __gnu_cxx::__ops::__iter_comp_val(__binary_pred);
1091 *__result = __value;
1092 while (++__first != __last)
1093 if (!__rebound_pred(__first, __value))
1095 __value = *__first;
1096 *++__result = __value;
1098 return ++__result;
1102 * This is an uglified
1103 * unique_copy(_InputIterator, _InputIterator, _OutputIterator,
1104 * _BinaryPredicate)
1105 * overloaded for input iterators and forward iterator as result.
1107 template<typename _InputIterator, typename _ForwardIterator,
1108 typename _BinaryPredicate>
1109 _ForwardIterator
1110 __unique_copy(_InputIterator __first, _InputIterator __last,
1111 _ForwardIterator __result, _BinaryPredicate __binary_pred,
1112 input_iterator_tag, forward_iterator_tag)
1114 // concept requirements -- iterators already checked
1115 __glibcxx_function_requires(_BinaryPredicateConcept<_BinaryPredicate,
1116 typename iterator_traits<_ForwardIterator>::value_type,
1117 typename iterator_traits<_InputIterator>::value_type>)
1118 *__result = *__first;
1119 while (++__first != __last)
1120 if (!__binary_pred(__result, __first))
1121 *++__result = *__first;
1122 return ++__result;
1126 * This is an uglified reverse(_BidirectionalIterator,
1127 * _BidirectionalIterator)
1128 * overloaded for bidirectional iterators.
1130 template<typename _BidirectionalIterator>
1131 void
1132 __reverse(_BidirectionalIterator __first, _BidirectionalIterator __last,
1133 bidirectional_iterator_tag)
1135 while (true)
1136 if (__first == __last || __first == --__last)
1137 return;
1138 else
1140 std::iter_swap(__first, __last);
1141 ++__first;
1146 * This is an uglified reverse(_BidirectionalIterator,
1147 * _BidirectionalIterator)
1148 * overloaded for random access iterators.
1150 template<typename _RandomAccessIterator>
1151 void
1152 __reverse(_RandomAccessIterator __first, _RandomAccessIterator __last,
1153 random_access_iterator_tag)
1155 if (__first == __last)
1156 return;
1157 --__last;
1158 while (__first < __last)
1160 std::iter_swap(__first, __last);
1161 ++__first;
1162 --__last;
1167 * @brief Reverse a sequence.
1168 * @ingroup mutating_algorithms
1169 * @param __first A bidirectional iterator.
1170 * @param __last A bidirectional iterator.
1171 * @return reverse() returns no value.
1173 * Reverses the order of the elements in the range @p [__first,__last),
1174 * so that the first element becomes the last etc.
1175 * For every @c i such that @p 0<=i<=(__last-__first)/2), @p reverse()
1176 * swaps @p *(__first+i) and @p *(__last-(i+1))
1178 template<typename _BidirectionalIterator>
1179 inline void
1180 reverse(_BidirectionalIterator __first, _BidirectionalIterator __last)
1182 // concept requirements
1183 __glibcxx_function_requires(_Mutable_BidirectionalIteratorConcept<
1184 _BidirectionalIterator>)
1185 __glibcxx_requires_valid_range(__first, __last);
1186 std::__reverse(__first, __last, std::__iterator_category(__first));
1190 * @brief Copy a sequence, reversing its elements.
1191 * @ingroup mutating_algorithms
1192 * @param __first A bidirectional iterator.
1193 * @param __last A bidirectional iterator.
1194 * @param __result An output iterator.
1195 * @return An iterator designating the end of the resulting sequence.
1197 * Copies the elements in the range @p [__first,__last) to the
1198 * range @p [__result,__result+(__last-__first)) such that the
1199 * order of the elements is reversed. For every @c i such that @p
1200 * 0<=i<=(__last-__first), @p reverse_copy() performs the
1201 * assignment @p *(__result+(__last-__first)-1-i) = *(__first+i).
1202 * The ranges @p [__first,__last) and @p
1203 * [__result,__result+(__last-__first)) must not overlap.
1205 template<typename _BidirectionalIterator, typename _OutputIterator>
1206 _OutputIterator
1207 reverse_copy(_BidirectionalIterator __first, _BidirectionalIterator __last,
1208 _OutputIterator __result)
1210 // concept requirements
1211 __glibcxx_function_requires(_BidirectionalIteratorConcept<
1212 _BidirectionalIterator>)
1213 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
1214 typename iterator_traits<_BidirectionalIterator>::value_type>)
1215 __glibcxx_requires_valid_range(__first, __last);
1217 while (__first != __last)
1219 --__last;
1220 *__result = *__last;
1221 ++__result;
1223 return __result;
1227 * This is a helper function for the rotate algorithm specialized on RAIs.
1228 * It returns the greatest common divisor of two integer values.
1230 template<typename _EuclideanRingElement>
1231 _EuclideanRingElement
1232 __gcd(_EuclideanRingElement __m, _EuclideanRingElement __n)
1234 while (__n != 0)
1236 _EuclideanRingElement __t = __m % __n;
1237 __m = __n;
1238 __n = __t;
1240 return __m;
1243 inline namespace _V2
1246 /// This is a helper function for the rotate algorithm.
1247 template<typename _ForwardIterator>
1248 _ForwardIterator
1249 __rotate(_ForwardIterator __first,
1250 _ForwardIterator __middle,
1251 _ForwardIterator __last,
1252 forward_iterator_tag)
1254 if (__first == __middle)
1255 return __last;
1256 else if (__last == __middle)
1257 return __first;
1259 _ForwardIterator __first2 = __middle;
1262 std::iter_swap(__first, __first2);
1263 ++__first;
1264 ++__first2;
1265 if (__first == __middle)
1266 __middle = __first2;
1268 while (__first2 != __last);
1270 _ForwardIterator __ret = __first;
1272 __first2 = __middle;
1274 while (__first2 != __last)
1276 std::iter_swap(__first, __first2);
1277 ++__first;
1278 ++__first2;
1279 if (__first == __middle)
1280 __middle = __first2;
1281 else if (__first2 == __last)
1282 __first2 = __middle;
1284 return __ret;
1287 /// This is a helper function for the rotate algorithm.
1288 template<typename _BidirectionalIterator>
1289 _BidirectionalIterator
1290 __rotate(_BidirectionalIterator __first,
1291 _BidirectionalIterator __middle,
1292 _BidirectionalIterator __last,
1293 bidirectional_iterator_tag)
1295 // concept requirements
1296 __glibcxx_function_requires(_Mutable_BidirectionalIteratorConcept<
1297 _BidirectionalIterator>)
1299 if (__first == __middle)
1300 return __last;
1301 else if (__last == __middle)
1302 return __first;
1304 std::__reverse(__first, __middle, bidirectional_iterator_tag());
1305 std::__reverse(__middle, __last, bidirectional_iterator_tag());
1307 while (__first != __middle && __middle != __last)
1309 std::iter_swap(__first, --__last);
1310 ++__first;
1313 if (__first == __middle)
1315 std::__reverse(__middle, __last, bidirectional_iterator_tag());
1316 return __last;
1318 else
1320 std::__reverse(__first, __middle, bidirectional_iterator_tag());
1321 return __first;
1325 /// This is a helper function for the rotate algorithm.
1326 template<typename _RandomAccessIterator>
1327 _RandomAccessIterator
1328 __rotate(_RandomAccessIterator __first,
1329 _RandomAccessIterator __middle,
1330 _RandomAccessIterator __last,
1331 random_access_iterator_tag)
1333 // concept requirements
1334 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept<
1335 _RandomAccessIterator>)
1337 if (__first == __middle)
1338 return __last;
1339 else if (__last == __middle)
1340 return __first;
1342 typedef typename iterator_traits<_RandomAccessIterator>::difference_type
1343 _Distance;
1344 typedef typename iterator_traits<_RandomAccessIterator>::value_type
1345 _ValueType;
1347 _Distance __n = __last - __first;
1348 _Distance __k = __middle - __first;
1350 if (__k == __n - __k)
1352 std::swap_ranges(__first, __middle, __middle);
1353 return __middle;
1356 _RandomAccessIterator __p = __first;
1357 _RandomAccessIterator __ret = __first + (__last - __middle);
1359 for (;;)
1361 if (__k < __n - __k)
1363 if (__is_pod(_ValueType) && __k == 1)
1365 _ValueType __t = _GLIBCXX_MOVE(*__p);
1366 _GLIBCXX_MOVE3(__p + 1, __p + __n, __p);
1367 *(__p + __n - 1) = _GLIBCXX_MOVE(__t);
1368 return __ret;
1370 _RandomAccessIterator __q = __p + __k;
1371 for (_Distance __i = 0; __i < __n - __k; ++ __i)
1373 std::iter_swap(__p, __q);
1374 ++__p;
1375 ++__q;
1377 __n %= __k;
1378 if (__n == 0)
1379 return __ret;
1380 std::swap(__n, __k);
1381 __k = __n - __k;
1383 else
1385 __k = __n - __k;
1386 if (__is_pod(_ValueType) && __k == 1)
1388 _ValueType __t = _GLIBCXX_MOVE(*(__p + __n - 1));
1389 _GLIBCXX_MOVE_BACKWARD3(__p, __p + __n - 1, __p + __n);
1390 *__p = _GLIBCXX_MOVE(__t);
1391 return __ret;
1393 _RandomAccessIterator __q = __p + __n;
1394 __p = __q - __k;
1395 for (_Distance __i = 0; __i < __n - __k; ++ __i)
1397 --__p;
1398 --__q;
1399 std::iter_swap(__p, __q);
1401 __n %= __k;
1402 if (__n == 0)
1403 return __ret;
1404 std::swap(__n, __k);
1409 // _GLIBCXX_RESOLVE_LIB_DEFECTS
1410 // DR 488. rotate throws away useful information
1412 * @brief Rotate the elements of a sequence.
1413 * @ingroup mutating_algorithms
1414 * @param __first A forward iterator.
1415 * @param __middle A forward iterator.
1416 * @param __last A forward iterator.
1417 * @return first + (last - middle).
1419 * Rotates the elements of the range @p [__first,__last) by
1420 * @p (__middle - __first) positions so that the element at @p __middle
1421 * is moved to @p __first, the element at @p __middle+1 is moved to
1422 * @p __first+1 and so on for each element in the range
1423 * @p [__first,__last).
1425 * This effectively swaps the ranges @p [__first,__middle) and
1426 * @p [__middle,__last).
1428 * Performs
1429 * @p *(__first+(n+(__last-__middle))%(__last-__first))=*(__first+n)
1430 * for each @p n in the range @p [0,__last-__first).
1432 template<typename _ForwardIterator>
1433 inline _ForwardIterator
1434 rotate(_ForwardIterator __first, _ForwardIterator __middle,
1435 _ForwardIterator __last)
1437 // concept requirements
1438 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
1439 _ForwardIterator>)
1440 __glibcxx_requires_valid_range(__first, __middle);
1441 __glibcxx_requires_valid_range(__middle, __last);
1443 return std::__rotate(__first, __middle, __last,
1444 std::__iterator_category(__first));
1447 } // namespace _V2
1450 * @brief Copy a sequence, rotating its elements.
1451 * @ingroup mutating_algorithms
1452 * @param __first A forward iterator.
1453 * @param __middle A forward iterator.
1454 * @param __last A forward iterator.
1455 * @param __result An output iterator.
1456 * @return An iterator designating the end of the resulting sequence.
1458 * Copies the elements of the range @p [__first,__last) to the
1459 * range beginning at @result, rotating the copied elements by
1460 * @p (__middle-__first) positions so that the element at @p __middle
1461 * is moved to @p __result, the element at @p __middle+1 is moved
1462 * to @p __result+1 and so on for each element in the range @p
1463 * [__first,__last).
1465 * Performs
1466 * @p *(__result+(n+(__last-__middle))%(__last-__first))=*(__first+n)
1467 * for each @p n in the range @p [0,__last-__first).
1469 template<typename _ForwardIterator, typename _OutputIterator>
1470 inline _OutputIterator
1471 rotate_copy(_ForwardIterator __first, _ForwardIterator __middle,
1472 _ForwardIterator __last, _OutputIterator __result)
1474 // concept requirements
1475 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
1476 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
1477 typename iterator_traits<_ForwardIterator>::value_type>)
1478 __glibcxx_requires_valid_range(__first, __middle);
1479 __glibcxx_requires_valid_range(__middle, __last);
1481 return std::copy(__first, __middle,
1482 std::copy(__middle, __last, __result));
1485 /// This is a helper function...
1486 template<typename _ForwardIterator, typename _Predicate>
1487 _ForwardIterator
1488 __partition(_ForwardIterator __first, _ForwardIterator __last,
1489 _Predicate __pred, forward_iterator_tag)
1491 if (__first == __last)
1492 return __first;
1494 while (__pred(*__first))
1495 if (++__first == __last)
1496 return __first;
1498 _ForwardIterator __next = __first;
1500 while (++__next != __last)
1501 if (__pred(*__next))
1503 std::iter_swap(__first, __next);
1504 ++__first;
1507 return __first;
1510 /// This is a helper function...
1511 template<typename _BidirectionalIterator, typename _Predicate>
1512 _BidirectionalIterator
1513 __partition(_BidirectionalIterator __first, _BidirectionalIterator __last,
1514 _Predicate __pred, bidirectional_iterator_tag)
1516 while (true)
1518 while (true)
1519 if (__first == __last)
1520 return __first;
1521 else if (__pred(*__first))
1522 ++__first;
1523 else
1524 break;
1525 --__last;
1526 while (true)
1527 if (__first == __last)
1528 return __first;
1529 else if (!bool(__pred(*__last)))
1530 --__last;
1531 else
1532 break;
1533 std::iter_swap(__first, __last);
1534 ++__first;
1538 // partition
1540 /// This is a helper function...
1541 /// Requires __first != __last and !__pred(__first)
1542 /// and __len == distance(__first, __last).
1544 /// !__pred(__first) allows us to guarantee that we don't
1545 /// move-assign an element onto itself.
1546 template<typename _ForwardIterator, typename _Pointer, typename _Predicate,
1547 typename _Distance>
1548 _ForwardIterator
1549 __stable_partition_adaptive(_ForwardIterator __first,
1550 _ForwardIterator __last,
1551 _Predicate __pred, _Distance __len,
1552 _Pointer __buffer,
1553 _Distance __buffer_size)
1555 if (__len == 1)
1556 return __first;
1558 if (__len <= __buffer_size)
1560 _ForwardIterator __result1 = __first;
1561 _Pointer __result2 = __buffer;
1563 // The precondition guarantees that !__pred(__first), so
1564 // move that element to the buffer before starting the loop.
1565 // This ensures that we only call __pred once per element.
1566 *__result2 = _GLIBCXX_MOVE(*__first);
1567 ++__result2;
1568 ++__first;
1569 for (; __first != __last; ++__first)
1570 if (__pred(__first))
1572 *__result1 = _GLIBCXX_MOVE(*__first);
1573 ++__result1;
1575 else
1577 *__result2 = _GLIBCXX_MOVE(*__first);
1578 ++__result2;
1581 _GLIBCXX_MOVE3(__buffer, __result2, __result1);
1582 return __result1;
1585 _ForwardIterator __middle = __first;
1586 std::advance(__middle, __len / 2);
1587 _ForwardIterator __left_split =
1588 std::__stable_partition_adaptive(__first, __middle, __pred,
1589 __len / 2, __buffer,
1590 __buffer_size);
1592 // Advance past true-predicate values to satisfy this
1593 // function's preconditions.
1594 _Distance __right_len = __len - __len / 2;
1595 _ForwardIterator __right_split =
1596 std::__find_if_not_n(__middle, __right_len, __pred);
1598 if (__right_len)
1599 __right_split =
1600 std::__stable_partition_adaptive(__right_split, __last, __pred,
1601 __right_len,
1602 __buffer, __buffer_size);
1604 std::rotate(__left_split, __middle, __right_split);
1605 std::advance(__left_split, std::distance(__middle, __right_split));
1606 return __left_split;
1609 template<typename _ForwardIterator, typename _Predicate>
1610 _ForwardIterator
1611 __stable_partition(_ForwardIterator __first, _ForwardIterator __last,
1612 _Predicate __pred)
1614 __first = std::__find_if_not(__first, __last, __pred);
1616 if (__first == __last)
1617 return __first;
1619 typedef typename iterator_traits<_ForwardIterator>::value_type
1620 _ValueType;
1621 typedef typename iterator_traits<_ForwardIterator>::difference_type
1622 _DistanceType;
1624 _Temporary_buffer<_ForwardIterator, _ValueType> __buf(__first, __last);
1625 return
1626 std::__stable_partition_adaptive(__first, __last, __pred,
1627 _DistanceType(__buf.requested_size()),
1628 __buf.begin(),
1629 _DistanceType(__buf.size()));
1633 * @brief Move elements for which a predicate is true to the beginning
1634 * of a sequence, preserving relative ordering.
1635 * @ingroup mutating_algorithms
1636 * @param __first A forward iterator.
1637 * @param __last A forward iterator.
1638 * @param __pred A predicate functor.
1639 * @return An iterator @p middle such that @p __pred(i) is true for each
1640 * iterator @p i in the range @p [first,middle) and false for each @p i
1641 * in the range @p [middle,last).
1643 * Performs the same function as @p partition() with the additional
1644 * guarantee that the relative ordering of elements in each group is
1645 * preserved, so any two elements @p x and @p y in the range
1646 * @p [__first,__last) such that @p __pred(x)==__pred(y) will have the same
1647 * relative ordering after calling @p stable_partition().
1649 template<typename _ForwardIterator, typename _Predicate>
1650 inline _ForwardIterator
1651 stable_partition(_ForwardIterator __first, _ForwardIterator __last,
1652 _Predicate __pred)
1654 // concept requirements
1655 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
1656 _ForwardIterator>)
1657 __glibcxx_function_requires(_UnaryPredicateConcept<_Predicate,
1658 typename iterator_traits<_ForwardIterator>::value_type>)
1659 __glibcxx_requires_valid_range(__first, __last);
1661 return std::__stable_partition(__first, __last,
1662 __gnu_cxx::__ops::__pred_iter(__pred));
1665 /// This is a helper function for the sort routines.
1666 template<typename _RandomAccessIterator, typename _Compare>
1667 void
1668 __heap_select(_RandomAccessIterator __first,
1669 _RandomAccessIterator __middle,
1670 _RandomAccessIterator __last, _Compare __comp)
1672 std::__make_heap(__first, __middle, __comp);
1673 for (_RandomAccessIterator __i = __middle; __i < __last; ++__i)
1674 if (__comp(__i, __first))
1675 std::__pop_heap(__first, __middle, __i, __comp);
1678 // partial_sort
1680 template<typename _InputIterator, typename _RandomAccessIterator,
1681 typename _Compare>
1682 _RandomAccessIterator
1683 __partial_sort_copy(_InputIterator __first, _InputIterator __last,
1684 _RandomAccessIterator __result_first,
1685 _RandomAccessIterator __result_last,
1686 _Compare __comp)
1688 typedef typename iterator_traits<_InputIterator>::value_type
1689 _InputValueType;
1690 typedef iterator_traits<_RandomAccessIterator> _RItTraits;
1691 typedef typename _RItTraits::difference_type _DistanceType;
1693 if (__result_first == __result_last)
1694 return __result_last;
1695 _RandomAccessIterator __result_real_last = __result_first;
1696 while (__first != __last && __result_real_last != __result_last)
1698 *__result_real_last = *__first;
1699 ++__result_real_last;
1700 ++__first;
1703 std::__make_heap(__result_first, __result_real_last, __comp);
1704 while (__first != __last)
1706 if (__comp(__first, __result_first))
1707 std::__adjust_heap(__result_first, _DistanceType(0),
1708 _DistanceType(__result_real_last
1709 - __result_first),
1710 _InputValueType(*__first), __comp);
1711 ++__first;
1713 std::__sort_heap(__result_first, __result_real_last, __comp);
1714 return __result_real_last;
1718 * @brief Copy the smallest elements of a sequence.
1719 * @ingroup sorting_algorithms
1720 * @param __first An iterator.
1721 * @param __last Another iterator.
1722 * @param __result_first A random-access iterator.
1723 * @param __result_last Another random-access iterator.
1724 * @return An iterator indicating the end of the resulting sequence.
1726 * Copies and sorts the smallest N values from the range @p [__first,__last)
1727 * to the range beginning at @p __result_first, where the number of
1728 * elements to be copied, @p N, is the smaller of @p (__last-__first) and
1729 * @p (__result_last-__result_first).
1730 * After the sort if @e i and @e j are iterators in the range
1731 * @p [__result_first,__result_first+N) such that i precedes j then
1732 * *j<*i is false.
1733 * The value returned is @p __result_first+N.
1735 template<typename _InputIterator, typename _RandomAccessIterator>
1736 inline _RandomAccessIterator
1737 partial_sort_copy(_InputIterator __first, _InputIterator __last,
1738 _RandomAccessIterator __result_first,
1739 _RandomAccessIterator __result_last)
1741 #ifdef _GLIBCXX_CONCEPT_CHECKS
1742 typedef typename iterator_traits<_InputIterator>::value_type
1743 _InputValueType;
1744 typedef typename iterator_traits<_RandomAccessIterator>::value_type
1745 _OutputValueType;
1746 #endif
1748 // concept requirements
1749 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
1750 __glibcxx_function_requires(_ConvertibleConcept<_InputValueType,
1751 _OutputValueType>)
1752 __glibcxx_function_requires(_LessThanOpConcept<_InputValueType,
1753 _OutputValueType>)
1754 __glibcxx_function_requires(_LessThanComparableConcept<_OutputValueType>)
1755 __glibcxx_requires_valid_range(__first, __last);
1756 __glibcxx_requires_irreflexive(__first, __last);
1757 __glibcxx_requires_valid_range(__result_first, __result_last);
1759 return std::__partial_sort_copy(__first, __last,
1760 __result_first, __result_last,
1761 __gnu_cxx::__ops::__iter_less_iter());
1765 * @brief Copy the smallest elements of a sequence using a predicate for
1766 * comparison.
1767 * @ingroup sorting_algorithms
1768 * @param __first An input iterator.
1769 * @param __last Another input iterator.
1770 * @param __result_first A random-access iterator.
1771 * @param __result_last Another random-access iterator.
1772 * @param __comp A comparison functor.
1773 * @return An iterator indicating the end of the resulting sequence.
1775 * Copies and sorts the smallest N values from the range @p [__first,__last)
1776 * to the range beginning at @p result_first, where the number of
1777 * elements to be copied, @p N, is the smaller of @p (__last-__first) and
1778 * @p (__result_last-__result_first).
1779 * After the sort if @e i and @e j are iterators in the range
1780 * @p [__result_first,__result_first+N) such that i precedes j then
1781 * @p __comp(*j,*i) is false.
1782 * The value returned is @p __result_first+N.
1784 template<typename _InputIterator, typename _RandomAccessIterator,
1785 typename _Compare>
1786 inline _RandomAccessIterator
1787 partial_sort_copy(_InputIterator __first, _InputIterator __last,
1788 _RandomAccessIterator __result_first,
1789 _RandomAccessIterator __result_last,
1790 _Compare __comp)
1792 #ifdef _GLIBCXX_CONCEPT_CHECKS
1793 typedef typename iterator_traits<_InputIterator>::value_type
1794 _InputValueType;
1795 typedef typename iterator_traits<_RandomAccessIterator>::value_type
1796 _OutputValueType;
1797 #endif
1799 // concept requirements
1800 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
1801 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept<
1802 _RandomAccessIterator>)
1803 __glibcxx_function_requires(_ConvertibleConcept<_InputValueType,
1804 _OutputValueType>)
1805 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
1806 _InputValueType, _OutputValueType>)
1807 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
1808 _OutputValueType, _OutputValueType>)
1809 __glibcxx_requires_valid_range(__first, __last);
1810 __glibcxx_requires_irreflexive_pred(__first, __last, __comp);
1811 __glibcxx_requires_valid_range(__result_first, __result_last);
1813 return std::__partial_sort_copy(__first, __last,
1814 __result_first, __result_last,
1815 __gnu_cxx::__ops::__iter_comp_iter(__comp));
1818 /// This is a helper function for the sort routine.
1819 template<typename _RandomAccessIterator, typename _Compare>
1820 void
1821 __unguarded_linear_insert(_RandomAccessIterator __last,
1822 _Compare __comp)
1824 typename iterator_traits<_RandomAccessIterator>::value_type
1825 __val = _GLIBCXX_MOVE(*__last);
1826 _RandomAccessIterator __next = __last;
1827 --__next;
1828 while (__comp(__val, __next))
1830 *__last = _GLIBCXX_MOVE(*__next);
1831 __last = __next;
1832 --__next;
1834 *__last = _GLIBCXX_MOVE(__val);
1837 /// This is a helper function for the sort routine.
1838 template<typename _RandomAccessIterator, typename _Compare>
1839 void
1840 __insertion_sort(_RandomAccessIterator __first,
1841 _RandomAccessIterator __last, _Compare __comp)
1843 if (__first == __last) return;
1845 for (_RandomAccessIterator __i = __first + 1; __i != __last; ++__i)
1847 if (__comp(__i, __first))
1849 typename iterator_traits<_RandomAccessIterator>::value_type
1850 __val = _GLIBCXX_MOVE(*__i);
1851 _GLIBCXX_MOVE_BACKWARD3(__first, __i, __i + 1);
1852 *__first = _GLIBCXX_MOVE(__val);
1854 else
1855 std::__unguarded_linear_insert(__i,
1856 __gnu_cxx::__ops::__val_comp_iter(__comp));
1860 /// This is a helper function for the sort routine.
1861 template<typename _RandomAccessIterator, typename _Compare>
1862 inline void
1863 __unguarded_insertion_sort(_RandomAccessIterator __first,
1864 _RandomAccessIterator __last, _Compare __comp)
1866 for (_RandomAccessIterator __i = __first; __i != __last; ++__i)
1867 std::__unguarded_linear_insert(__i,
1868 __gnu_cxx::__ops::__val_comp_iter(__comp));
1872 * @doctodo
1873 * This controls some aspect of the sort routines.
1875 enum { _S_threshold = 16 };
1877 /// This is a helper function for the sort routine.
1878 template<typename _RandomAccessIterator, typename _Compare>
1879 void
1880 __final_insertion_sort(_RandomAccessIterator __first,
1881 _RandomAccessIterator __last, _Compare __comp)
1883 if (__last - __first > int(_S_threshold))
1885 std::__insertion_sort(__first, __first + int(_S_threshold), __comp);
1886 std::__unguarded_insertion_sort(__first + int(_S_threshold), __last,
1887 __comp);
1889 else
1890 std::__insertion_sort(__first, __last, __comp);
1893 /// This is a helper function...
1894 template<typename _RandomAccessIterator, typename _Compare>
1895 _RandomAccessIterator
1896 __unguarded_partition(_RandomAccessIterator __first,
1897 _RandomAccessIterator __last,
1898 _RandomAccessIterator __pivot, _Compare __comp)
1900 while (true)
1902 while (__comp(__first, __pivot))
1903 ++__first;
1904 --__last;
1905 while (__comp(__pivot, __last))
1906 --__last;
1907 if (!(__first < __last))
1908 return __first;
1909 std::iter_swap(__first, __last);
1910 ++__first;
1914 /// This is a helper function...
1915 template<typename _RandomAccessIterator, typename _Compare>
1916 inline _RandomAccessIterator
1917 __unguarded_partition_pivot(_RandomAccessIterator __first,
1918 _RandomAccessIterator __last, _Compare __comp)
1920 _RandomAccessIterator __mid = __first + (__last - __first) / 2;
1921 std::__move_median_to_first(__first, __first + 1, __mid, __last - 1,
1922 __comp);
1923 return std::__unguarded_partition(__first + 1, __last, __first, __comp);
1926 template<typename _RandomAccessIterator, typename _Compare>
1927 inline void
1928 __partial_sort(_RandomAccessIterator __first,
1929 _RandomAccessIterator __middle,
1930 _RandomAccessIterator __last,
1931 _Compare __comp)
1933 std::__heap_select(__first, __middle, __last, __comp);
1934 std::__sort_heap(__first, __middle, __comp);
1937 /// This is a helper function for the sort routine.
1938 template<typename _RandomAccessIterator, typename _Size, typename _Compare>
1939 void
1940 __introsort_loop(_RandomAccessIterator __first,
1941 _RandomAccessIterator __last,
1942 _Size __depth_limit, _Compare __comp)
1944 while (__last - __first > int(_S_threshold))
1946 if (__depth_limit == 0)
1948 std::__partial_sort(__first, __last, __last, __comp);
1949 return;
1951 --__depth_limit;
1952 _RandomAccessIterator __cut =
1953 std::__unguarded_partition_pivot(__first, __last, __comp);
1954 std::__introsort_loop(__cut, __last, __depth_limit, __comp);
1955 __last = __cut;
1959 // sort
1961 template<typename _RandomAccessIterator, typename _Compare>
1962 inline void
1963 __sort(_RandomAccessIterator __first, _RandomAccessIterator __last,
1964 _Compare __comp)
1966 if (__first != __last)
1968 std::__introsort_loop(__first, __last,
1969 std::__lg(__last - __first) * 2,
1970 __comp);
1971 std::__final_insertion_sort(__first, __last, __comp);
1975 template<typename _RandomAccessIterator, typename _Size, typename _Compare>
1976 void
1977 __introselect(_RandomAccessIterator __first, _RandomAccessIterator __nth,
1978 _RandomAccessIterator __last, _Size __depth_limit,
1979 _Compare __comp)
1981 while (__last - __first > 3)
1983 if (__depth_limit == 0)
1985 std::__heap_select(__first, __nth + 1, __last, __comp);
1986 // Place the nth largest element in its final position.
1987 std::iter_swap(__first, __nth);
1988 return;
1990 --__depth_limit;
1991 _RandomAccessIterator __cut =
1992 std::__unguarded_partition_pivot(__first, __last, __comp);
1993 if (__cut <= __nth)
1994 __first = __cut;
1995 else
1996 __last = __cut;
1998 std::__insertion_sort(__first, __last, __comp);
2001 // nth_element
2003 // lower_bound moved to stl_algobase.h
2006 * @brief Finds the first position in which @p __val could be inserted
2007 * without changing the ordering.
2008 * @ingroup binary_search_algorithms
2009 * @param __first An iterator.
2010 * @param __last Another iterator.
2011 * @param __val The search term.
2012 * @param __comp A functor to use for comparisons.
2013 * @return An iterator pointing to the first element <em>not less
2014 * than</em> @p __val, or end() if every element is less
2015 * than @p __val.
2016 * @ingroup binary_search_algorithms
2018 * The comparison function should have the same effects on ordering as
2019 * the function used for the initial sort.
2021 template<typename _ForwardIterator, typename _Tp, typename _Compare>
2022 inline _ForwardIterator
2023 lower_bound(_ForwardIterator __first, _ForwardIterator __last,
2024 const _Tp& __val, _Compare __comp)
2026 // concept requirements
2027 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
2028 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
2029 typename iterator_traits<_ForwardIterator>::value_type, _Tp>)
2030 __glibcxx_requires_partitioned_lower_pred(__first, __last,
2031 __val, __comp);
2033 return std::__lower_bound(__first, __last, __val,
2034 __gnu_cxx::__ops::__iter_comp_val(__comp));
2037 template<typename _ForwardIterator, typename _Tp, typename _Compare>
2038 _ForwardIterator
2039 __upper_bound(_ForwardIterator __first, _ForwardIterator __last,
2040 const _Tp& __val, _Compare __comp)
2042 typedef typename iterator_traits<_ForwardIterator>::difference_type
2043 _DistanceType;
2045 _DistanceType __len = std::distance(__first, __last);
2047 while (__len > 0)
2049 _DistanceType __half = __len >> 1;
2050 _ForwardIterator __middle = __first;
2051 std::advance(__middle, __half);
2052 if (__comp(__val, __middle))
2053 __len = __half;
2054 else
2056 __first = __middle;
2057 ++__first;
2058 __len = __len - __half - 1;
2061 return __first;
2065 * @brief Finds the last position in which @p __val could be inserted
2066 * without changing the ordering.
2067 * @ingroup binary_search_algorithms
2068 * @param __first An iterator.
2069 * @param __last Another iterator.
2070 * @param __val The search term.
2071 * @return An iterator pointing to the first element greater than @p __val,
2072 * or end() if no elements are greater than @p __val.
2073 * @ingroup binary_search_algorithms
2075 template<typename _ForwardIterator, typename _Tp>
2076 inline _ForwardIterator
2077 upper_bound(_ForwardIterator __first, _ForwardIterator __last,
2078 const _Tp& __val)
2080 // concept requirements
2081 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
2082 __glibcxx_function_requires(_LessThanOpConcept<
2083 _Tp, typename iterator_traits<_ForwardIterator>::value_type>)
2084 __glibcxx_requires_partitioned_upper(__first, __last, __val);
2086 return std::__upper_bound(__first, __last, __val,
2087 __gnu_cxx::__ops::__val_less_iter());
2091 * @brief Finds the last position in which @p __val could be inserted
2092 * without changing the ordering.
2093 * @ingroup binary_search_algorithms
2094 * @param __first An iterator.
2095 * @param __last Another iterator.
2096 * @param __val The search term.
2097 * @param __comp A functor to use for comparisons.
2098 * @return An iterator pointing to the first element greater than @p __val,
2099 * or end() if no elements are greater than @p __val.
2100 * @ingroup binary_search_algorithms
2102 * The comparison function should have the same effects on ordering as
2103 * the function used for the initial sort.
2105 template<typename _ForwardIterator, typename _Tp, typename _Compare>
2106 inline _ForwardIterator
2107 upper_bound(_ForwardIterator __first, _ForwardIterator __last,
2108 const _Tp& __val, _Compare __comp)
2110 // concept requirements
2111 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
2112 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
2113 _Tp, typename iterator_traits<_ForwardIterator>::value_type>)
2114 __glibcxx_requires_partitioned_upper_pred(__first, __last,
2115 __val, __comp);
2117 return std::__upper_bound(__first, __last, __val,
2118 __gnu_cxx::__ops::__val_comp_iter(__comp));
2121 template<typename _ForwardIterator, typename _Tp,
2122 typename _CompareItTp, typename _CompareTpIt>
2123 pair<_ForwardIterator, _ForwardIterator>
2124 __equal_range(_ForwardIterator __first, _ForwardIterator __last,
2125 const _Tp& __val,
2126 _CompareItTp __comp_it_val, _CompareTpIt __comp_val_it)
2128 typedef typename iterator_traits<_ForwardIterator>::difference_type
2129 _DistanceType;
2131 _DistanceType __len = std::distance(__first, __last);
2133 while (__len > 0)
2135 _DistanceType __half = __len >> 1;
2136 _ForwardIterator __middle = __first;
2137 std::advance(__middle, __half);
2138 if (__comp_it_val(__middle, __val))
2140 __first = __middle;
2141 ++__first;
2142 __len = __len - __half - 1;
2144 else if (__comp_val_it(__val, __middle))
2145 __len = __half;
2146 else
2148 _ForwardIterator __left
2149 = std::__lower_bound(__first, __middle, __val, __comp_it_val);
2150 std::advance(__first, __len);
2151 _ForwardIterator __right
2152 = std::__upper_bound(++__middle, __first, __val, __comp_val_it);
2153 return pair<_ForwardIterator, _ForwardIterator>(__left, __right);
2156 return pair<_ForwardIterator, _ForwardIterator>(__first, __first);
2160 * @brief Finds the largest subrange in which @p __val could be inserted
2161 * at any place in it without changing the ordering.
2162 * @ingroup binary_search_algorithms
2163 * @param __first An iterator.
2164 * @param __last Another iterator.
2165 * @param __val The search term.
2166 * @return An pair of iterators defining the subrange.
2167 * @ingroup binary_search_algorithms
2169 * This is equivalent to
2170 * @code
2171 * std::make_pair(lower_bound(__first, __last, __val),
2172 * upper_bound(__first, __last, __val))
2173 * @endcode
2174 * but does not actually call those functions.
2176 template<typename _ForwardIterator, typename _Tp>
2177 inline pair<_ForwardIterator, _ForwardIterator>
2178 equal_range(_ForwardIterator __first, _ForwardIterator __last,
2179 const _Tp& __val)
2181 // concept requirements
2182 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
2183 __glibcxx_function_requires(_LessThanOpConcept<
2184 typename iterator_traits<_ForwardIterator>::value_type, _Tp>)
2185 __glibcxx_function_requires(_LessThanOpConcept<
2186 _Tp, typename iterator_traits<_ForwardIterator>::value_type>)
2187 __glibcxx_requires_partitioned_lower(__first, __last, __val);
2188 __glibcxx_requires_partitioned_upper(__first, __last, __val);
2190 return std::__equal_range(__first, __last, __val,
2191 __gnu_cxx::__ops::__iter_less_val(),
2192 __gnu_cxx::__ops::__val_less_iter());
2196 * @brief Finds the largest subrange in which @p __val could be inserted
2197 * at any place in it without changing the ordering.
2198 * @param __first An iterator.
2199 * @param __last Another iterator.
2200 * @param __val The search term.
2201 * @param __comp A functor to use for comparisons.
2202 * @return An pair of iterators defining the subrange.
2203 * @ingroup binary_search_algorithms
2205 * This is equivalent to
2206 * @code
2207 * std::make_pair(lower_bound(__first, __last, __val, __comp),
2208 * upper_bound(__first, __last, __val, __comp))
2209 * @endcode
2210 * but does not actually call those functions.
2212 template<typename _ForwardIterator, typename _Tp, typename _Compare>
2213 inline pair<_ForwardIterator, _ForwardIterator>
2214 equal_range(_ForwardIterator __first, _ForwardIterator __last,
2215 const _Tp& __val, _Compare __comp)
2217 // concept requirements
2218 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
2219 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
2220 typename iterator_traits<_ForwardIterator>::value_type, _Tp>)
2221 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
2222 _Tp, typename iterator_traits<_ForwardIterator>::value_type>)
2223 __glibcxx_requires_partitioned_lower_pred(__first, __last,
2224 __val, __comp);
2225 __glibcxx_requires_partitioned_upper_pred(__first, __last,
2226 __val, __comp);
2228 return std::__equal_range(__first, __last, __val,
2229 __gnu_cxx::__ops::__iter_comp_val(__comp),
2230 __gnu_cxx::__ops::__val_comp_iter(__comp));
2234 * @brief Determines whether an element exists in a range.
2235 * @ingroup binary_search_algorithms
2236 * @param __first An iterator.
2237 * @param __last Another iterator.
2238 * @param __val The search term.
2239 * @return True if @p __val (or its equivalent) is in [@p
2240 * __first,@p __last ].
2242 * Note that this does not actually return an iterator to @p __val. For
2243 * that, use std::find or a container's specialized find member functions.
2245 template<typename _ForwardIterator, typename _Tp>
2246 bool
2247 binary_search(_ForwardIterator __first, _ForwardIterator __last,
2248 const _Tp& __val)
2250 // concept requirements
2251 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
2252 __glibcxx_function_requires(_LessThanOpConcept<
2253 _Tp, typename iterator_traits<_ForwardIterator>::value_type>)
2254 __glibcxx_requires_partitioned_lower(__first, __last, __val);
2255 __glibcxx_requires_partitioned_upper(__first, __last, __val);
2257 _ForwardIterator __i
2258 = std::__lower_bound(__first, __last, __val,
2259 __gnu_cxx::__ops::__iter_less_val());
2260 return __i != __last && !(__val < *__i);
2264 * @brief Determines whether an element exists in a range.
2265 * @ingroup binary_search_algorithms
2266 * @param __first An iterator.
2267 * @param __last Another iterator.
2268 * @param __val The search term.
2269 * @param __comp A functor to use for comparisons.
2270 * @return True if @p __val (or its equivalent) is in @p [__first,__last].
2272 * Note that this does not actually return an iterator to @p __val. For
2273 * that, use std::find or a container's specialized find member functions.
2275 * The comparison function should have the same effects on ordering as
2276 * the function used for the initial sort.
2278 template<typename _ForwardIterator, typename _Tp, typename _Compare>
2279 bool
2280 binary_search(_ForwardIterator __first, _ForwardIterator __last,
2281 const _Tp& __val, _Compare __comp)
2283 // concept requirements
2284 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
2285 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
2286 _Tp, typename iterator_traits<_ForwardIterator>::value_type>)
2287 __glibcxx_requires_partitioned_lower_pred(__first, __last,
2288 __val, __comp);
2289 __glibcxx_requires_partitioned_upper_pred(__first, __last,
2290 __val, __comp);
2292 _ForwardIterator __i
2293 = std::__lower_bound(__first, __last, __val,
2294 __gnu_cxx::__ops::__iter_comp_val(__comp));
2295 return __i != __last && !bool(__comp(__val, *__i));
2298 // merge
2300 /// This is a helper function for the __merge_adaptive routines.
2301 template<typename _InputIterator1, typename _InputIterator2,
2302 typename _OutputIterator, typename _Compare>
2303 void
2304 __move_merge_adaptive(_InputIterator1 __first1, _InputIterator1 __last1,
2305 _InputIterator2 __first2, _InputIterator2 __last2,
2306 _OutputIterator __result, _Compare __comp)
2308 while (__first1 != __last1 && __first2 != __last2)
2310 if (__comp(__first2, __first1))
2312 *__result = _GLIBCXX_MOVE(*__first2);
2313 ++__first2;
2315 else
2317 *__result = _GLIBCXX_MOVE(*__first1);
2318 ++__first1;
2320 ++__result;
2322 if (__first1 != __last1)
2323 _GLIBCXX_MOVE3(__first1, __last1, __result);
2326 /// This is a helper function for the __merge_adaptive routines.
2327 template<typename _BidirectionalIterator1, typename _BidirectionalIterator2,
2328 typename _BidirectionalIterator3, typename _Compare>
2329 void
2330 __move_merge_adaptive_backward(_BidirectionalIterator1 __first1,
2331 _BidirectionalIterator1 __last1,
2332 _BidirectionalIterator2 __first2,
2333 _BidirectionalIterator2 __last2,
2334 _BidirectionalIterator3 __result,
2335 _Compare __comp)
2337 if (__first1 == __last1)
2339 _GLIBCXX_MOVE_BACKWARD3(__first2, __last2, __result);
2340 return;
2342 else if (__first2 == __last2)
2343 return;
2345 --__last1;
2346 --__last2;
2347 while (true)
2349 if (__comp(__last2, __last1))
2351 *--__result = _GLIBCXX_MOVE(*__last1);
2352 if (__first1 == __last1)
2354 _GLIBCXX_MOVE_BACKWARD3(__first2, ++__last2, __result);
2355 return;
2357 --__last1;
2359 else
2361 *--__result = _GLIBCXX_MOVE(*__last2);
2362 if (__first2 == __last2)
2363 return;
2364 --__last2;
2369 /// This is a helper function for the merge routines.
2370 template<typename _BidirectionalIterator1, typename _BidirectionalIterator2,
2371 typename _Distance>
2372 _BidirectionalIterator1
2373 __rotate_adaptive(_BidirectionalIterator1 __first,
2374 _BidirectionalIterator1 __middle,
2375 _BidirectionalIterator1 __last,
2376 _Distance __len1, _Distance __len2,
2377 _BidirectionalIterator2 __buffer,
2378 _Distance __buffer_size)
2380 _BidirectionalIterator2 __buffer_end;
2381 if (__len1 > __len2 && __len2 <= __buffer_size)
2383 if (__len2)
2385 __buffer_end = _GLIBCXX_MOVE3(__middle, __last, __buffer);
2386 _GLIBCXX_MOVE_BACKWARD3(__first, __middle, __last);
2387 return _GLIBCXX_MOVE3(__buffer, __buffer_end, __first);
2389 else
2390 return __first;
2392 else if (__len1 <= __buffer_size)
2394 if (__len1)
2396 __buffer_end = _GLIBCXX_MOVE3(__first, __middle, __buffer);
2397 _GLIBCXX_MOVE3(__middle, __last, __first);
2398 return _GLIBCXX_MOVE_BACKWARD3(__buffer, __buffer_end, __last);
2400 else
2401 return __last;
2403 else
2405 std::rotate(__first, __middle, __last);
2406 std::advance(__first, std::distance(__middle, __last));
2407 return __first;
2411 /// This is a helper function for the merge routines.
2412 template<typename _BidirectionalIterator, typename _Distance,
2413 typename _Pointer, typename _Compare>
2414 void
2415 __merge_adaptive(_BidirectionalIterator __first,
2416 _BidirectionalIterator __middle,
2417 _BidirectionalIterator __last,
2418 _Distance __len1, _Distance __len2,
2419 _Pointer __buffer, _Distance __buffer_size,
2420 _Compare __comp)
2422 if (__len1 <= __len2 && __len1 <= __buffer_size)
2424 _Pointer __buffer_end = _GLIBCXX_MOVE3(__first, __middle, __buffer);
2425 std::__move_merge_adaptive(__buffer, __buffer_end, __middle, __last,
2426 __first, __comp);
2428 else if (__len2 <= __buffer_size)
2430 _Pointer __buffer_end = _GLIBCXX_MOVE3(__middle, __last, __buffer);
2431 std::__move_merge_adaptive_backward(__first, __middle, __buffer,
2432 __buffer_end, __last, __comp);
2434 else
2436 _BidirectionalIterator __first_cut = __first;
2437 _BidirectionalIterator __second_cut = __middle;
2438 _Distance __len11 = 0;
2439 _Distance __len22 = 0;
2440 if (__len1 > __len2)
2442 __len11 = __len1 / 2;
2443 std::advance(__first_cut, __len11);
2444 __second_cut
2445 = std::__lower_bound(__middle, __last, *__first_cut,
2446 __gnu_cxx::__ops::__iter_comp_val(__comp));
2447 __len22 = std::distance(__middle, __second_cut);
2449 else
2451 __len22 = __len2 / 2;
2452 std::advance(__second_cut, __len22);
2453 __first_cut
2454 = std::__upper_bound(__first, __middle, *__second_cut,
2455 __gnu_cxx::__ops::__val_comp_iter(__comp));
2456 __len11 = std::distance(__first, __first_cut);
2459 _BidirectionalIterator __new_middle
2460 = std::__rotate_adaptive(__first_cut, __middle, __second_cut,
2461 __len1 - __len11, __len22, __buffer,
2462 __buffer_size);
2463 std::__merge_adaptive(__first, __first_cut, __new_middle, __len11,
2464 __len22, __buffer, __buffer_size, __comp);
2465 std::__merge_adaptive(__new_middle, __second_cut, __last,
2466 __len1 - __len11,
2467 __len2 - __len22, __buffer,
2468 __buffer_size, __comp);
2472 /// This is a helper function for the merge routines.
2473 template<typename _BidirectionalIterator, typename _Distance,
2474 typename _Compare>
2475 void
2476 __merge_without_buffer(_BidirectionalIterator __first,
2477 _BidirectionalIterator __middle,
2478 _BidirectionalIterator __last,
2479 _Distance __len1, _Distance __len2,
2480 _Compare __comp)
2482 if (__len1 == 0 || __len2 == 0)
2483 return;
2485 if (__len1 + __len2 == 2)
2487 if (__comp(__middle, __first))
2488 std::iter_swap(__first, __middle);
2489 return;
2492 _BidirectionalIterator __first_cut = __first;
2493 _BidirectionalIterator __second_cut = __middle;
2494 _Distance __len11 = 0;
2495 _Distance __len22 = 0;
2496 if (__len1 > __len2)
2498 __len11 = __len1 / 2;
2499 std::advance(__first_cut, __len11);
2500 __second_cut
2501 = std::__lower_bound(__middle, __last, *__first_cut,
2502 __gnu_cxx::__ops::__iter_comp_val(__comp));
2503 __len22 = std::distance(__middle, __second_cut);
2505 else
2507 __len22 = __len2 / 2;
2508 std::advance(__second_cut, __len22);
2509 __first_cut
2510 = std::__upper_bound(__first, __middle, *__second_cut,
2511 __gnu_cxx::__ops::__val_comp_iter(__comp));
2512 __len11 = std::distance(__first, __first_cut);
2515 std::rotate(__first_cut, __middle, __second_cut);
2516 _BidirectionalIterator __new_middle = __first_cut;
2517 std::advance(__new_middle, std::distance(__middle, __second_cut));
2518 std::__merge_without_buffer(__first, __first_cut, __new_middle,
2519 __len11, __len22, __comp);
2520 std::__merge_without_buffer(__new_middle, __second_cut, __last,
2521 __len1 - __len11, __len2 - __len22, __comp);
2524 template<typename _BidirectionalIterator, typename _Compare>
2525 void
2526 __inplace_merge(_BidirectionalIterator __first,
2527 _BidirectionalIterator __middle,
2528 _BidirectionalIterator __last,
2529 _Compare __comp)
2531 typedef typename iterator_traits<_BidirectionalIterator>::value_type
2532 _ValueType;
2533 typedef typename iterator_traits<_BidirectionalIterator>::difference_type
2534 _DistanceType;
2536 if (__first == __middle || __middle == __last)
2537 return;
2539 const _DistanceType __len1 = std::distance(__first, __middle);
2540 const _DistanceType __len2 = std::distance(__middle, __last);
2542 typedef _Temporary_buffer<_BidirectionalIterator, _ValueType> _TmpBuf;
2543 _TmpBuf __buf(__first, __last);
2545 if (__buf.begin() == 0)
2546 std::__merge_without_buffer
2547 (__first, __middle, __last, __len1, __len2, __comp);
2548 else
2549 std::__merge_adaptive
2550 (__first, __middle, __last, __len1, __len2, __buf.begin(),
2551 _DistanceType(__buf.size()), __comp);
2555 * @brief Merges two sorted ranges in place.
2556 * @ingroup sorting_algorithms
2557 * @param __first An iterator.
2558 * @param __middle Another iterator.
2559 * @param __last Another iterator.
2560 * @return Nothing.
2562 * Merges two sorted and consecutive ranges, [__first,__middle) and
2563 * [__middle,__last), and puts the result in [__first,__last). The
2564 * output will be sorted. The sort is @e stable, that is, for
2565 * equivalent elements in the two ranges, elements from the first
2566 * range will always come before elements from the second.
2568 * If enough additional memory is available, this takes (__last-__first)-1
2569 * comparisons. Otherwise an NlogN algorithm is used, where N is
2570 * distance(__first,__last).
2572 template<typename _BidirectionalIterator>
2573 inline void
2574 inplace_merge(_BidirectionalIterator __first,
2575 _BidirectionalIterator __middle,
2576 _BidirectionalIterator __last)
2578 // concept requirements
2579 __glibcxx_function_requires(_Mutable_BidirectionalIteratorConcept<
2580 _BidirectionalIterator>)
2581 __glibcxx_function_requires(_LessThanComparableConcept<
2582 typename iterator_traits<_BidirectionalIterator>::value_type>)
2583 __glibcxx_requires_sorted(__first, __middle);
2584 __glibcxx_requires_sorted(__middle, __last);
2585 __glibcxx_requires_irreflexive(__first, __last);
2587 std::__inplace_merge(__first, __middle, __last,
2588 __gnu_cxx::__ops::__iter_less_iter());
2592 * @brief Merges two sorted ranges in place.
2593 * @ingroup sorting_algorithms
2594 * @param __first An iterator.
2595 * @param __middle Another iterator.
2596 * @param __last Another iterator.
2597 * @param __comp A functor to use for comparisons.
2598 * @return Nothing.
2600 * Merges two sorted and consecutive ranges, [__first,__middle) and
2601 * [middle,last), and puts the result in [__first,__last). The output will
2602 * be sorted. The sort is @e stable, that is, for equivalent
2603 * elements in the two ranges, elements from the first range will always
2604 * come before elements from the second.
2606 * If enough additional memory is available, this takes (__last-__first)-1
2607 * comparisons. Otherwise an NlogN algorithm is used, where N is
2608 * distance(__first,__last).
2610 * The comparison function should have the same effects on ordering as
2611 * the function used for the initial sort.
2613 template<typename _BidirectionalIterator, typename _Compare>
2614 inline void
2615 inplace_merge(_BidirectionalIterator __first,
2616 _BidirectionalIterator __middle,
2617 _BidirectionalIterator __last,
2618 _Compare __comp)
2620 // concept requirements
2621 __glibcxx_function_requires(_Mutable_BidirectionalIteratorConcept<
2622 _BidirectionalIterator>)
2623 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
2624 typename iterator_traits<_BidirectionalIterator>::value_type,
2625 typename iterator_traits<_BidirectionalIterator>::value_type>)
2626 __glibcxx_requires_sorted_pred(__first, __middle, __comp);
2627 __glibcxx_requires_sorted_pred(__middle, __last, __comp);
2628 __glibcxx_requires_irreflexive_pred(__first, __last, __comp);
2630 std::__inplace_merge(__first, __middle, __last,
2631 __gnu_cxx::__ops::__iter_comp_iter(__comp));
2635 /// This is a helper function for the __merge_sort_loop routines.
2636 template<typename _InputIterator, typename _OutputIterator,
2637 typename _Compare>
2638 _OutputIterator
2639 __move_merge(_InputIterator __first1, _InputIterator __last1,
2640 _InputIterator __first2, _InputIterator __last2,
2641 _OutputIterator __result, _Compare __comp)
2643 while (__first1 != __last1 && __first2 != __last2)
2645 if (__comp(__first2, __first1))
2647 *__result = _GLIBCXX_MOVE(*__first2);
2648 ++__first2;
2650 else
2652 *__result = _GLIBCXX_MOVE(*__first1);
2653 ++__first1;
2655 ++__result;
2657 return _GLIBCXX_MOVE3(__first2, __last2,
2658 _GLIBCXX_MOVE3(__first1, __last1,
2659 __result));
2662 template<typename _RandomAccessIterator1, typename _RandomAccessIterator2,
2663 typename _Distance, typename _Compare>
2664 void
2665 __merge_sort_loop(_RandomAccessIterator1 __first,
2666 _RandomAccessIterator1 __last,
2667 _RandomAccessIterator2 __result, _Distance __step_size,
2668 _Compare __comp)
2670 const _Distance __two_step = 2 * __step_size;
2672 while (__last - __first >= __two_step)
2674 __result = std::__move_merge(__first, __first + __step_size,
2675 __first + __step_size,
2676 __first + __two_step,
2677 __result, __comp);
2678 __first += __two_step;
2680 __step_size = std::min(_Distance(__last - __first), __step_size);
2682 std::__move_merge(__first, __first + __step_size,
2683 __first + __step_size, __last, __result, __comp);
2686 template<typename _RandomAccessIterator, typename _Distance,
2687 typename _Compare>
2688 void
2689 __chunk_insertion_sort(_RandomAccessIterator __first,
2690 _RandomAccessIterator __last,
2691 _Distance __chunk_size, _Compare __comp)
2693 while (__last - __first >= __chunk_size)
2695 std::__insertion_sort(__first, __first + __chunk_size, __comp);
2696 __first += __chunk_size;
2698 std::__insertion_sort(__first, __last, __comp);
2701 enum { _S_chunk_size = 7 };
2703 template<typename _RandomAccessIterator, typename _Pointer, typename _Compare>
2704 void
2705 __merge_sort_with_buffer(_RandomAccessIterator __first,
2706 _RandomAccessIterator __last,
2707 _Pointer __buffer, _Compare __comp)
2709 typedef typename iterator_traits<_RandomAccessIterator>::difference_type
2710 _Distance;
2712 const _Distance __len = __last - __first;
2713 const _Pointer __buffer_last = __buffer + __len;
2715 _Distance __step_size = _S_chunk_size;
2716 std::__chunk_insertion_sort(__first, __last, __step_size, __comp);
2718 while (__step_size < __len)
2720 std::__merge_sort_loop(__first, __last, __buffer,
2721 __step_size, __comp);
2722 __step_size *= 2;
2723 std::__merge_sort_loop(__buffer, __buffer_last, __first,
2724 __step_size, __comp);
2725 __step_size *= 2;
2729 template<typename _RandomAccessIterator, typename _Pointer,
2730 typename _Distance, typename _Compare>
2731 void
2732 __stable_sort_adaptive(_RandomAccessIterator __first,
2733 _RandomAccessIterator __last,
2734 _Pointer __buffer, _Distance __buffer_size,
2735 _Compare __comp)
2737 const _Distance __len = (__last - __first + 1) / 2;
2738 const _RandomAccessIterator __middle = __first + __len;
2739 if (__len > __buffer_size)
2741 std::__stable_sort_adaptive(__first, __middle, __buffer,
2742 __buffer_size, __comp);
2743 std::__stable_sort_adaptive(__middle, __last, __buffer,
2744 __buffer_size, __comp);
2746 else
2748 std::__merge_sort_with_buffer(__first, __middle, __buffer, __comp);
2749 std::__merge_sort_with_buffer(__middle, __last, __buffer, __comp);
2751 std::__merge_adaptive(__first, __middle, __last,
2752 _Distance(__middle - __first),
2753 _Distance(__last - __middle),
2754 __buffer, __buffer_size,
2755 __comp);
2758 /// This is a helper function for the stable sorting routines.
2759 template<typename _RandomAccessIterator, typename _Compare>
2760 void
2761 __inplace_stable_sort(_RandomAccessIterator __first,
2762 _RandomAccessIterator __last, _Compare __comp)
2764 if (__last - __first < 15)
2766 std::__insertion_sort(__first, __last, __comp);
2767 return;
2769 _RandomAccessIterator __middle = __first + (__last - __first) / 2;
2770 std::__inplace_stable_sort(__first, __middle, __comp);
2771 std::__inplace_stable_sort(__middle, __last, __comp);
2772 std::__merge_without_buffer(__first, __middle, __last,
2773 __middle - __first,
2774 __last - __middle,
2775 __comp);
2778 // stable_sort
2780 // Set algorithms: includes, set_union, set_intersection, set_difference,
2781 // set_symmetric_difference. All of these algorithms have the precondition
2782 // that their input ranges are sorted and the postcondition that their output
2783 // ranges are sorted.
2785 template<typename _InputIterator1, typename _InputIterator2,
2786 typename _Compare>
2787 bool
2788 __includes(_InputIterator1 __first1, _InputIterator1 __last1,
2789 _InputIterator2 __first2, _InputIterator2 __last2,
2790 _Compare __comp)
2792 while (__first1 != __last1 && __first2 != __last2)
2793 if (__comp(__first2, __first1))
2794 return false;
2795 else if (__comp(__first1, __first2))
2796 ++__first1;
2797 else
2799 ++__first1;
2800 ++__first2;
2803 return __first2 == __last2;
2807 * @brief Determines whether all elements of a sequence exists in a range.
2808 * @param __first1 Start of search range.
2809 * @param __last1 End of search range.
2810 * @param __first2 Start of sequence
2811 * @param __last2 End of sequence.
2812 * @return True if each element in [__first2,__last2) is contained in order
2813 * within [__first1,__last1). False otherwise.
2814 * @ingroup set_algorithms
2816 * This operation expects both [__first1,__last1) and
2817 * [__first2,__last2) to be sorted. Searches for the presence of
2818 * each element in [__first2,__last2) within [__first1,__last1).
2819 * The iterators over each range only move forward, so this is a
2820 * linear algorithm. If an element in [__first2,__last2) is not
2821 * found before the search iterator reaches @p __last2, false is
2822 * returned.
2824 template<typename _InputIterator1, typename _InputIterator2>
2825 inline bool
2826 includes(_InputIterator1 __first1, _InputIterator1 __last1,
2827 _InputIterator2 __first2, _InputIterator2 __last2)
2829 // concept requirements
2830 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
2831 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
2832 __glibcxx_function_requires(_LessThanOpConcept<
2833 typename iterator_traits<_InputIterator1>::value_type,
2834 typename iterator_traits<_InputIterator2>::value_type>)
2835 __glibcxx_function_requires(_LessThanOpConcept<
2836 typename iterator_traits<_InputIterator2>::value_type,
2837 typename iterator_traits<_InputIterator1>::value_type>)
2838 __glibcxx_requires_sorted_set(__first1, __last1, __first2);
2839 __glibcxx_requires_sorted_set(__first2, __last2, __first1);
2840 __glibcxx_requires_irreflexive2(__first1, __last1);
2841 __glibcxx_requires_irreflexive2(__first2, __last2);
2843 return std::__includes(__first1, __last1, __first2, __last2,
2844 __gnu_cxx::__ops::__iter_less_iter());
2848 * @brief Determines whether all elements of a sequence exists in a range
2849 * using comparison.
2850 * @ingroup set_algorithms
2851 * @param __first1 Start of search range.
2852 * @param __last1 End of search range.
2853 * @param __first2 Start of sequence
2854 * @param __last2 End of sequence.
2855 * @param __comp Comparison function to use.
2856 * @return True if each element in [__first2,__last2) is contained
2857 * in order within [__first1,__last1) according to comp. False
2858 * otherwise. @ingroup set_algorithms
2860 * This operation expects both [__first1,__last1) and
2861 * [__first2,__last2) to be sorted. Searches for the presence of
2862 * each element in [__first2,__last2) within [__first1,__last1),
2863 * using comp to decide. The iterators over each range only move
2864 * forward, so this is a linear algorithm. If an element in
2865 * [__first2,__last2) is not found before the search iterator
2866 * reaches @p __last2, false is returned.
2868 template<typename _InputIterator1, typename _InputIterator2,
2869 typename _Compare>
2870 inline bool
2871 includes(_InputIterator1 __first1, _InputIterator1 __last1,
2872 _InputIterator2 __first2, _InputIterator2 __last2,
2873 _Compare __comp)
2875 // concept requirements
2876 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
2877 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
2878 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
2879 typename iterator_traits<_InputIterator1>::value_type,
2880 typename iterator_traits<_InputIterator2>::value_type>)
2881 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
2882 typename iterator_traits<_InputIterator2>::value_type,
2883 typename iterator_traits<_InputIterator1>::value_type>)
2884 __glibcxx_requires_sorted_set_pred(__first1, __last1, __first2, __comp);
2885 __glibcxx_requires_sorted_set_pred(__first2, __last2, __first1, __comp);
2886 __glibcxx_requires_irreflexive_pred2(__first1, __last1, __comp);
2887 __glibcxx_requires_irreflexive_pred2(__first2, __last2, __comp);
2889 return std::__includes(__first1, __last1, __first2, __last2,
2890 __gnu_cxx::__ops::__iter_comp_iter(__comp));
2893 // nth_element
2894 // merge
2895 // set_difference
2896 // set_intersection
2897 // set_union
2898 // stable_sort
2899 // set_symmetric_difference
2900 // min_element
2901 // max_element
2903 template<typename _BidirectionalIterator, typename _Compare>
2904 bool
2905 __next_permutation(_BidirectionalIterator __first,
2906 _BidirectionalIterator __last, _Compare __comp)
2908 if (__first == __last)
2909 return false;
2910 _BidirectionalIterator __i = __first;
2911 ++__i;
2912 if (__i == __last)
2913 return false;
2914 __i = __last;
2915 --__i;
2917 for(;;)
2919 _BidirectionalIterator __ii = __i;
2920 --__i;
2921 if (__comp(__i, __ii))
2923 _BidirectionalIterator __j = __last;
2924 while (!__comp(__i, --__j))
2926 std::iter_swap(__i, __j);
2927 std::__reverse(__ii, __last,
2928 std::__iterator_category(__first));
2929 return true;
2931 if (__i == __first)
2933 std::__reverse(__first, __last,
2934 std::__iterator_category(__first));
2935 return false;
2941 * @brief Permute range into the next @e dictionary ordering.
2942 * @ingroup sorting_algorithms
2943 * @param __first Start of range.
2944 * @param __last End of range.
2945 * @return False if wrapped to first permutation, true otherwise.
2947 * Treats all permutations of the range as a set of @e dictionary sorted
2948 * sequences. Permutes the current sequence into the next one of this set.
2949 * Returns true if there are more sequences to generate. If the sequence
2950 * is the largest of the set, the smallest is generated and false returned.
2952 template<typename _BidirectionalIterator>
2953 inline bool
2954 next_permutation(_BidirectionalIterator __first,
2955 _BidirectionalIterator __last)
2957 // concept requirements
2958 __glibcxx_function_requires(_BidirectionalIteratorConcept<
2959 _BidirectionalIterator>)
2960 __glibcxx_function_requires(_LessThanComparableConcept<
2961 typename iterator_traits<_BidirectionalIterator>::value_type>)
2962 __glibcxx_requires_valid_range(__first, __last);
2963 __glibcxx_requires_irreflexive(__first, __last);
2965 return std::__next_permutation
2966 (__first, __last, __gnu_cxx::__ops::__iter_less_iter());
2970 * @brief Permute range into the next @e dictionary ordering using
2971 * comparison functor.
2972 * @ingroup sorting_algorithms
2973 * @param __first Start of range.
2974 * @param __last End of range.
2975 * @param __comp A comparison functor.
2976 * @return False if wrapped to first permutation, true otherwise.
2978 * Treats all permutations of the range [__first,__last) as a set of
2979 * @e dictionary sorted sequences ordered by @p __comp. Permutes the current
2980 * sequence into the next one of this set. Returns true if there are more
2981 * sequences to generate. If the sequence is the largest of the set, the
2982 * smallest is generated and false returned.
2984 template<typename _BidirectionalIterator, typename _Compare>
2985 inline bool
2986 next_permutation(_BidirectionalIterator __first,
2987 _BidirectionalIterator __last, _Compare __comp)
2989 // concept requirements
2990 __glibcxx_function_requires(_BidirectionalIteratorConcept<
2991 _BidirectionalIterator>)
2992 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
2993 typename iterator_traits<_BidirectionalIterator>::value_type,
2994 typename iterator_traits<_BidirectionalIterator>::value_type>)
2995 __glibcxx_requires_valid_range(__first, __last);
2996 __glibcxx_requires_irreflexive_pred(__first, __last, __comp);
2998 return std::__next_permutation
2999 (__first, __last, __gnu_cxx::__ops::__iter_comp_iter(__comp));
3002 template<typename _BidirectionalIterator, typename _Compare>
3003 bool
3004 __prev_permutation(_BidirectionalIterator __first,
3005 _BidirectionalIterator __last, _Compare __comp)
3007 if (__first == __last)
3008 return false;
3009 _BidirectionalIterator __i = __first;
3010 ++__i;
3011 if (__i == __last)
3012 return false;
3013 __i = __last;
3014 --__i;
3016 for(;;)
3018 _BidirectionalIterator __ii = __i;
3019 --__i;
3020 if (__comp(__ii, __i))
3022 _BidirectionalIterator __j = __last;
3023 while (!__comp(--__j, __i))
3025 std::iter_swap(__i, __j);
3026 std::__reverse(__ii, __last,
3027 std::__iterator_category(__first));
3028 return true;
3030 if (__i == __first)
3032 std::__reverse(__first, __last,
3033 std::__iterator_category(__first));
3034 return false;
3040 * @brief Permute range into the previous @e dictionary ordering.
3041 * @ingroup sorting_algorithms
3042 * @param __first Start of range.
3043 * @param __last End of range.
3044 * @return False if wrapped to last permutation, true otherwise.
3046 * Treats all permutations of the range as a set of @e dictionary sorted
3047 * sequences. Permutes the current sequence into the previous one of this
3048 * set. Returns true if there are more sequences to generate. If the
3049 * sequence is the smallest of the set, the largest is generated and false
3050 * returned.
3052 template<typename _BidirectionalIterator>
3053 inline bool
3054 prev_permutation(_BidirectionalIterator __first,
3055 _BidirectionalIterator __last)
3057 // concept requirements
3058 __glibcxx_function_requires(_BidirectionalIteratorConcept<
3059 _BidirectionalIterator>)
3060 __glibcxx_function_requires(_LessThanComparableConcept<
3061 typename iterator_traits<_BidirectionalIterator>::value_type>)
3062 __glibcxx_requires_valid_range(__first, __last);
3063 __glibcxx_requires_irreflexive(__first, __last);
3065 return std::__prev_permutation(__first, __last,
3066 __gnu_cxx::__ops::__iter_less_iter());
3070 * @brief Permute range into the previous @e dictionary ordering using
3071 * comparison functor.
3072 * @ingroup sorting_algorithms
3073 * @param __first Start of range.
3074 * @param __last End of range.
3075 * @param __comp A comparison functor.
3076 * @return False if wrapped to last permutation, true otherwise.
3078 * Treats all permutations of the range [__first,__last) as a set of
3079 * @e dictionary sorted sequences ordered by @p __comp. Permutes the current
3080 * sequence into the previous one of this set. Returns true if there are
3081 * more sequences to generate. If the sequence is the smallest of the set,
3082 * the largest is generated and false returned.
3084 template<typename _BidirectionalIterator, typename _Compare>
3085 inline bool
3086 prev_permutation(_BidirectionalIterator __first,
3087 _BidirectionalIterator __last, _Compare __comp)
3089 // concept requirements
3090 __glibcxx_function_requires(_BidirectionalIteratorConcept<
3091 _BidirectionalIterator>)
3092 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
3093 typename iterator_traits<_BidirectionalIterator>::value_type,
3094 typename iterator_traits<_BidirectionalIterator>::value_type>)
3095 __glibcxx_requires_valid_range(__first, __last);
3096 __glibcxx_requires_irreflexive_pred(__first, __last, __comp);
3098 return std::__prev_permutation(__first, __last,
3099 __gnu_cxx::__ops::__iter_comp_iter(__comp));
3102 // replace
3103 // replace_if
3105 template<typename _InputIterator, typename _OutputIterator,
3106 typename _Predicate, typename _Tp>
3107 _OutputIterator
3108 __replace_copy_if(_InputIterator __first, _InputIterator __last,
3109 _OutputIterator __result,
3110 _Predicate __pred, const _Tp& __new_value)
3112 for (; __first != __last; ++__first, (void)++__result)
3113 if (__pred(__first))
3114 *__result = __new_value;
3115 else
3116 *__result = *__first;
3117 return __result;
3121 * @brief Copy a sequence, replacing each element of one value with another
3122 * value.
3123 * @param __first An input iterator.
3124 * @param __last An input iterator.
3125 * @param __result An output iterator.
3126 * @param __old_value The value to be replaced.
3127 * @param __new_value The replacement value.
3128 * @return The end of the output sequence, @p result+(last-first).
3130 * Copies each element in the input range @p [__first,__last) to the
3131 * output range @p [__result,__result+(__last-__first)) replacing elements
3132 * equal to @p __old_value with @p __new_value.
3134 template<typename _InputIterator, typename _OutputIterator, typename _Tp>
3135 inline _OutputIterator
3136 replace_copy(_InputIterator __first, _InputIterator __last,
3137 _OutputIterator __result,
3138 const _Tp& __old_value, const _Tp& __new_value)
3140 // concept requirements
3141 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
3142 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
3143 typename iterator_traits<_InputIterator>::value_type>)
3144 __glibcxx_function_requires(_EqualOpConcept<
3145 typename iterator_traits<_InputIterator>::value_type, _Tp>)
3146 __glibcxx_requires_valid_range(__first, __last);
3148 return std::__replace_copy_if(__first, __last, __result,
3149 __gnu_cxx::__ops::__iter_equals_val(__old_value),
3150 __new_value);
3154 * @brief Copy a sequence, replacing each value for which a predicate
3155 * returns true with another value.
3156 * @ingroup mutating_algorithms
3157 * @param __first An input iterator.
3158 * @param __last An input iterator.
3159 * @param __result An output iterator.
3160 * @param __pred A predicate.
3161 * @param __new_value The replacement value.
3162 * @return The end of the output sequence, @p __result+(__last-__first).
3164 * Copies each element in the range @p [__first,__last) to the range
3165 * @p [__result,__result+(__last-__first)) replacing elements for which
3166 * @p __pred returns true with @p __new_value.
3168 template<typename _InputIterator, typename _OutputIterator,
3169 typename _Predicate, typename _Tp>
3170 inline _OutputIterator
3171 replace_copy_if(_InputIterator __first, _InputIterator __last,
3172 _OutputIterator __result,
3173 _Predicate __pred, const _Tp& __new_value)
3175 // concept requirements
3176 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
3177 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
3178 typename iterator_traits<_InputIterator>::value_type>)
3179 __glibcxx_function_requires(_UnaryPredicateConcept<_Predicate,
3180 typename iterator_traits<_InputIterator>::value_type>)
3181 __glibcxx_requires_valid_range(__first, __last);
3183 return std::__replace_copy_if(__first, __last, __result,
3184 __gnu_cxx::__ops::__pred_iter(__pred),
3185 __new_value);
3188 template<typename _InputIterator, typename _Predicate>
3189 typename iterator_traits<_InputIterator>::difference_type
3190 __count_if(_InputIterator __first, _InputIterator __last, _Predicate __pred)
3192 typename iterator_traits<_InputIterator>::difference_type __n = 0;
3193 for (; __first != __last; ++__first)
3194 if (__pred(__first))
3195 ++__n;
3196 return __n;
3199 #if __cplusplus >= 201103L
3201 * @brief Determines whether the elements of a sequence are sorted.
3202 * @ingroup sorting_algorithms
3203 * @param __first An iterator.
3204 * @param __last Another iterator.
3205 * @return True if the elements are sorted, false otherwise.
3207 template<typename _ForwardIterator>
3208 inline bool
3209 is_sorted(_ForwardIterator __first, _ForwardIterator __last)
3210 { return std::is_sorted_until(__first, __last) == __last; }
3213 * @brief Determines whether the elements of a sequence are sorted
3214 * according to a comparison functor.
3215 * @ingroup sorting_algorithms
3216 * @param __first An iterator.
3217 * @param __last Another iterator.
3218 * @param __comp A comparison functor.
3219 * @return True if the elements are sorted, false otherwise.
3221 template<typename _ForwardIterator, typename _Compare>
3222 inline bool
3223 is_sorted(_ForwardIterator __first, _ForwardIterator __last,
3224 _Compare __comp)
3225 { return std::is_sorted_until(__first, __last, __comp) == __last; }
3227 template<typename _ForwardIterator, typename _Compare>
3228 _ForwardIterator
3229 __is_sorted_until(_ForwardIterator __first, _ForwardIterator __last,
3230 _Compare __comp)
3232 if (__first == __last)
3233 return __last;
3235 _ForwardIterator __next = __first;
3236 for (++__next; __next != __last; __first = __next, (void)++__next)
3237 if (__comp(__next, __first))
3238 return __next;
3239 return __next;
3243 * @brief Determines the end of a sorted sequence.
3244 * @ingroup sorting_algorithms
3245 * @param __first An iterator.
3246 * @param __last Another iterator.
3247 * @return An iterator pointing to the last iterator i in [__first, __last)
3248 * for which the range [__first, i) is sorted.
3250 template<typename _ForwardIterator>
3251 inline _ForwardIterator
3252 is_sorted_until(_ForwardIterator __first, _ForwardIterator __last)
3254 // concept requirements
3255 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
3256 __glibcxx_function_requires(_LessThanComparableConcept<
3257 typename iterator_traits<_ForwardIterator>::value_type>)
3258 __glibcxx_requires_valid_range(__first, __last);
3259 __glibcxx_requires_irreflexive(__first, __last);
3261 return std::__is_sorted_until(__first, __last,
3262 __gnu_cxx::__ops::__iter_less_iter());
3266 * @brief Determines the end of a sorted sequence using comparison functor.
3267 * @ingroup sorting_algorithms
3268 * @param __first An iterator.
3269 * @param __last Another iterator.
3270 * @param __comp A comparison functor.
3271 * @return An iterator pointing to the last iterator i in [__first, __last)
3272 * for which the range [__first, i) is sorted.
3274 template<typename _ForwardIterator, typename _Compare>
3275 inline _ForwardIterator
3276 is_sorted_until(_ForwardIterator __first, _ForwardIterator __last,
3277 _Compare __comp)
3279 // concept requirements
3280 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
3281 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
3282 typename iterator_traits<_ForwardIterator>::value_type,
3283 typename iterator_traits<_ForwardIterator>::value_type>)
3284 __glibcxx_requires_valid_range(__first, __last);
3285 __glibcxx_requires_irreflexive_pred(__first, __last, __comp);
3287 return std::__is_sorted_until(__first, __last,
3288 __gnu_cxx::__ops::__iter_comp_iter(__comp));
3292 * @brief Determines min and max at once as an ordered pair.
3293 * @ingroup sorting_algorithms
3294 * @param __a A thing of arbitrary type.
3295 * @param __b Another thing of arbitrary type.
3296 * @return A pair(__b, __a) if __b is smaller than __a, pair(__a,
3297 * __b) otherwise.
3299 template<typename _Tp>
3300 _GLIBCXX14_CONSTEXPR
3301 inline pair<const _Tp&, const _Tp&>
3302 minmax(const _Tp& __a, const _Tp& __b)
3304 // concept requirements
3305 __glibcxx_function_requires(_LessThanComparableConcept<_Tp>)
3307 return __b < __a ? pair<const _Tp&, const _Tp&>(__b, __a)
3308 : pair<const _Tp&, const _Tp&>(__a, __b);
3312 * @brief Determines min and max at once as an ordered pair.
3313 * @ingroup sorting_algorithms
3314 * @param __a A thing of arbitrary type.
3315 * @param __b Another thing of arbitrary type.
3316 * @param __comp A @link comparison_functors comparison functor @endlink.
3317 * @return A pair(__b, __a) if __b is smaller than __a, pair(__a,
3318 * __b) otherwise.
3320 template<typename _Tp, typename _Compare>
3321 _GLIBCXX14_CONSTEXPR
3322 inline pair<const _Tp&, const _Tp&>
3323 minmax(const _Tp& __a, const _Tp& __b, _Compare __comp)
3325 return __comp(__b, __a) ? pair<const _Tp&, const _Tp&>(__b, __a)
3326 : pair<const _Tp&, const _Tp&>(__a, __b);
3329 template<typename _ForwardIterator, typename _Compare>
3330 _GLIBCXX14_CONSTEXPR
3331 pair<_ForwardIterator, _ForwardIterator>
3332 __minmax_element(_ForwardIterator __first, _ForwardIterator __last,
3333 _Compare __comp)
3335 _ForwardIterator __next = __first;
3336 if (__first == __last
3337 || ++__next == __last)
3338 return std::make_pair(__first, __first);
3340 _ForwardIterator __min{}, __max{};
3341 if (__comp(__next, __first))
3343 __min = __next;
3344 __max = __first;
3346 else
3348 __min = __first;
3349 __max = __next;
3352 __first = __next;
3353 ++__first;
3355 while (__first != __last)
3357 __next = __first;
3358 if (++__next == __last)
3360 if (__comp(__first, __min))
3361 __min = __first;
3362 else if (!__comp(__first, __max))
3363 __max = __first;
3364 break;
3367 if (__comp(__next, __first))
3369 if (__comp(__next, __min))
3370 __min = __next;
3371 if (!__comp(__first, __max))
3372 __max = __first;
3374 else
3376 if (__comp(__first, __min))
3377 __min = __first;
3378 if (!__comp(__next, __max))
3379 __max = __next;
3382 __first = __next;
3383 ++__first;
3386 return std::make_pair(__min, __max);
3390 * @brief Return a pair of iterators pointing to the minimum and maximum
3391 * elements in a range.
3392 * @ingroup sorting_algorithms
3393 * @param __first Start of range.
3394 * @param __last End of range.
3395 * @return make_pair(m, M), where m is the first iterator i in
3396 * [__first, __last) such that no other element in the range is
3397 * smaller, and where M is the last iterator i in [__first, __last)
3398 * such that no other element in the range is larger.
3400 template<typename _ForwardIterator>
3401 _GLIBCXX14_CONSTEXPR
3402 inline pair<_ForwardIterator, _ForwardIterator>
3403 minmax_element(_ForwardIterator __first, _ForwardIterator __last)
3405 // concept requirements
3406 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
3407 __glibcxx_function_requires(_LessThanComparableConcept<
3408 typename iterator_traits<_ForwardIterator>::value_type>)
3409 __glibcxx_requires_valid_range(__first, __last);
3410 __glibcxx_requires_irreflexive(__first, __last);
3412 return std::__minmax_element(__first, __last,
3413 __gnu_cxx::__ops::__iter_less_iter());
3417 * @brief Return a pair of iterators pointing to the minimum and maximum
3418 * elements in a range.
3419 * @ingroup sorting_algorithms
3420 * @param __first Start of range.
3421 * @param __last End of range.
3422 * @param __comp Comparison functor.
3423 * @return make_pair(m, M), where m is the first iterator i in
3424 * [__first, __last) such that no other element in the range is
3425 * smaller, and where M is the last iterator i in [__first, __last)
3426 * such that no other element in the range is larger.
3428 template<typename _ForwardIterator, typename _Compare>
3429 _GLIBCXX14_CONSTEXPR
3430 inline pair<_ForwardIterator, _ForwardIterator>
3431 minmax_element(_ForwardIterator __first, _ForwardIterator __last,
3432 _Compare __comp)
3434 // concept requirements
3435 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
3436 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
3437 typename iterator_traits<_ForwardIterator>::value_type,
3438 typename iterator_traits<_ForwardIterator>::value_type>)
3439 __glibcxx_requires_valid_range(__first, __last);
3440 __glibcxx_requires_irreflexive_pred(__first, __last, __comp);
3442 return std::__minmax_element(__first, __last,
3443 __gnu_cxx::__ops::__iter_comp_iter(__comp));
3446 // N2722 + DR 915.
3447 template<typename _Tp>
3448 _GLIBCXX14_CONSTEXPR
3449 inline _Tp
3450 min(initializer_list<_Tp> __l)
3451 { return *std::min_element(__l.begin(), __l.end()); }
3453 template<typename _Tp, typename _Compare>
3454 _GLIBCXX14_CONSTEXPR
3455 inline _Tp
3456 min(initializer_list<_Tp> __l, _Compare __comp)
3457 { return *std::min_element(__l.begin(), __l.end(), __comp); }
3459 template<typename _Tp>
3460 _GLIBCXX14_CONSTEXPR
3461 inline _Tp
3462 max(initializer_list<_Tp> __l)
3463 { return *std::max_element(__l.begin(), __l.end()); }
3465 template<typename _Tp, typename _Compare>
3466 _GLIBCXX14_CONSTEXPR
3467 inline _Tp
3468 max(initializer_list<_Tp> __l, _Compare __comp)
3469 { return *std::max_element(__l.begin(), __l.end(), __comp); }
3471 template<typename _Tp>
3472 _GLIBCXX14_CONSTEXPR
3473 inline pair<_Tp, _Tp>
3474 minmax(initializer_list<_Tp> __l)
3476 pair<const _Tp*, const _Tp*> __p =
3477 std::minmax_element(__l.begin(), __l.end());
3478 return std::make_pair(*__p.first, *__p.second);
3481 template<typename _Tp, typename _Compare>
3482 _GLIBCXX14_CONSTEXPR
3483 inline pair<_Tp, _Tp>
3484 minmax(initializer_list<_Tp> __l, _Compare __comp)
3486 pair<const _Tp*, const _Tp*> __p =
3487 std::minmax_element(__l.begin(), __l.end(), __comp);
3488 return std::make_pair(*__p.first, *__p.second);
3491 template<typename _ForwardIterator1, typename _ForwardIterator2,
3492 typename _BinaryPredicate>
3493 bool
3494 __is_permutation(_ForwardIterator1 __first1, _ForwardIterator1 __last1,
3495 _ForwardIterator2 __first2, _BinaryPredicate __pred)
3497 // Efficiently compare identical prefixes: O(N) if sequences
3498 // have the same elements in the same order.
3499 for (; __first1 != __last1; ++__first1, (void)++__first2)
3500 if (!__pred(__first1, __first2))
3501 break;
3503 if (__first1 == __last1)
3504 return true;
3506 // Establish __last2 assuming equal ranges by iterating over the
3507 // rest of the list.
3508 _ForwardIterator2 __last2 = __first2;
3509 std::advance(__last2, std::distance(__first1, __last1));
3510 for (_ForwardIterator1 __scan = __first1; __scan != __last1; ++__scan)
3512 if (__scan != std::__find_if(__first1, __scan,
3513 __gnu_cxx::__ops::__iter_comp_iter(__pred, __scan)))
3514 continue; // We've seen this one before.
3516 auto __matches
3517 = std::__count_if(__first2, __last2,
3518 __gnu_cxx::__ops::__iter_comp_iter(__pred, __scan));
3519 if (0 == __matches ||
3520 std::__count_if(__scan, __last1,
3521 __gnu_cxx::__ops::__iter_comp_iter(__pred, __scan))
3522 != __matches)
3523 return false;
3525 return true;
3529 * @brief Checks whether a permutation of the second sequence is equal
3530 * to the first sequence.
3531 * @ingroup non_mutating_algorithms
3532 * @param __first1 Start of first range.
3533 * @param __last1 End of first range.
3534 * @param __first2 Start of second range.
3535 * @return true if there exists a permutation of the elements in the range
3536 * [__first2, __first2 + (__last1 - __first1)), beginning with
3537 * ForwardIterator2 begin, such that equal(__first1, __last1, begin)
3538 * returns true; otherwise, returns false.
3540 template<typename _ForwardIterator1, typename _ForwardIterator2>
3541 inline bool
3542 is_permutation(_ForwardIterator1 __first1, _ForwardIterator1 __last1,
3543 _ForwardIterator2 __first2)
3545 // concept requirements
3546 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator1>)
3547 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator2>)
3548 __glibcxx_function_requires(_EqualOpConcept<
3549 typename iterator_traits<_ForwardIterator1>::value_type,
3550 typename iterator_traits<_ForwardIterator2>::value_type>)
3551 __glibcxx_requires_valid_range(__first1, __last1);
3553 return std::__is_permutation(__first1, __last1, __first2,
3554 __gnu_cxx::__ops::__iter_equal_to_iter());
3558 * @brief Checks whether a permutation of the second sequence is equal
3559 * to the first sequence.
3560 * @ingroup non_mutating_algorithms
3561 * @param __first1 Start of first range.
3562 * @param __last1 End of first range.
3563 * @param __first2 Start of second range.
3564 * @param __pred A binary predicate.
3565 * @return true if there exists a permutation of the elements in
3566 * the range [__first2, __first2 + (__last1 - __first1)),
3567 * beginning with ForwardIterator2 begin, such that
3568 * equal(__first1, __last1, __begin, __pred) returns true;
3569 * otherwise, returns false.
3571 template<typename _ForwardIterator1, typename _ForwardIterator2,
3572 typename _BinaryPredicate>
3573 inline bool
3574 is_permutation(_ForwardIterator1 __first1, _ForwardIterator1 __last1,
3575 _ForwardIterator2 __first2, _BinaryPredicate __pred)
3577 // concept requirements
3578 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator1>)
3579 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator2>)
3580 __glibcxx_function_requires(_BinaryPredicateConcept<_BinaryPredicate,
3581 typename iterator_traits<_ForwardIterator1>::value_type,
3582 typename iterator_traits<_ForwardIterator2>::value_type>)
3583 __glibcxx_requires_valid_range(__first1, __last1);
3585 return std::__is_permutation(__first1, __last1, __first2,
3586 __gnu_cxx::__ops::__iter_comp_iter(__pred));
3589 #if __cplusplus > 201103L
3590 template<typename _ForwardIterator1, typename _ForwardIterator2,
3591 typename _BinaryPredicate>
3592 bool
3593 __is_permutation(_ForwardIterator1 __first1, _ForwardIterator1 __last1,
3594 _ForwardIterator2 __first2, _ForwardIterator2 __last2,
3595 _BinaryPredicate __pred)
3597 using _Cat1
3598 = typename iterator_traits<_ForwardIterator1>::iterator_category;
3599 using _Cat2
3600 = typename iterator_traits<_ForwardIterator2>::iterator_category;
3601 using _It1_is_RA = is_same<_Cat1, random_access_iterator_tag>;
3602 using _It2_is_RA = is_same<_Cat2, random_access_iterator_tag>;
3603 constexpr bool __ra_iters = _It1_is_RA() && _It2_is_RA();
3604 if (__ra_iters)
3606 auto __d1 = std::distance(__first1, __last1);
3607 auto __d2 = std::distance(__first2, __last2);
3608 if (__d1 != __d2)
3609 return false;
3612 // Efficiently compare identical prefixes: O(N) if sequences
3613 // have the same elements in the same order.
3614 for (; __first1 != __last1 && __first2 != __last2;
3615 ++__first1, (void)++__first2)
3616 if (!__pred(__first1, __first2))
3617 break;
3619 if (__ra_iters)
3621 if (__first1 == __last1)
3622 return true;
3624 else
3626 auto __d1 = std::distance(__first1, __last1);
3627 auto __d2 = std::distance(__first2, __last2);
3628 if (__d1 == 0 && __d2 == 0)
3629 return true;
3630 if (__d1 != __d2)
3631 return false;
3634 for (_ForwardIterator1 __scan = __first1; __scan != __last1; ++__scan)
3636 if (__scan != std::__find_if(__first1, __scan,
3637 __gnu_cxx::__ops::__iter_comp_iter(__pred, __scan)))
3638 continue; // We've seen this one before.
3640 auto __matches = std::__count_if(__first2, __last2,
3641 __gnu_cxx::__ops::__iter_comp_iter(__pred, __scan));
3642 if (0 == __matches
3643 || std::__count_if(__scan, __last1,
3644 __gnu_cxx::__ops::__iter_comp_iter(__pred, __scan))
3645 != __matches)
3646 return false;
3648 return true;
3652 * @brief Checks whether a permutaion of the second sequence is equal
3653 * to the first sequence.
3654 * @ingroup non_mutating_algorithms
3655 * @param __first1 Start of first range.
3656 * @param __last1 End of first range.
3657 * @param __first2 Start of second range.
3658 * @param __last2 End of first range.
3659 * @return true if there exists a permutation of the elements in the range
3660 * [__first2, __last2), beginning with ForwardIterator2 begin,
3661 * such that equal(__first1, __last1, begin) returns true;
3662 * otherwise, returns false.
3664 template<typename _ForwardIterator1, typename _ForwardIterator2>
3665 inline bool
3666 is_permutation(_ForwardIterator1 __first1, _ForwardIterator1 __last1,
3667 _ForwardIterator2 __first2, _ForwardIterator2 __last2)
3669 __glibcxx_requires_valid_range(__first1, __last1);
3670 __glibcxx_requires_valid_range(__first2, __last2);
3672 return
3673 std::__is_permutation(__first1, __last1, __first2, __last2,
3674 __gnu_cxx::__ops::__iter_equal_to_iter());
3678 * @brief Checks whether a permutation of the second sequence is equal
3679 * to the first sequence.
3680 * @ingroup non_mutating_algorithms
3681 * @param __first1 Start of first range.
3682 * @param __last1 End of first range.
3683 * @param __first2 Start of second range.
3684 * @param __last2 End of first range.
3685 * @param __pred A binary predicate.
3686 * @return true if there exists a permutation of the elements in the range
3687 * [__first2, __last2), beginning with ForwardIterator2 begin,
3688 * such that equal(__first1, __last1, __begin, __pred) returns true;
3689 * otherwise, returns false.
3691 template<typename _ForwardIterator1, typename _ForwardIterator2,
3692 typename _BinaryPredicate>
3693 inline bool
3694 is_permutation(_ForwardIterator1 __first1, _ForwardIterator1 __last1,
3695 _ForwardIterator2 __first2, _ForwardIterator2 __last2,
3696 _BinaryPredicate __pred)
3698 __glibcxx_requires_valid_range(__first1, __last1);
3699 __glibcxx_requires_valid_range(__first2, __last2);
3701 return std::__is_permutation(__first1, __last1, __first2, __last2,
3702 __gnu_cxx::__ops::__iter_comp_iter(__pred));
3705 #if __cplusplus > 201402L
3707 #define __cpp_lib_clamp 201603
3710 * @brief Returns the value clamped between lo and hi.
3711 * @ingroup sorting_algorithms
3712 * @param __val A value of arbitrary type.
3713 * @param __lo A lower limit of arbitrary type.
3714 * @param __hi An upper limit of arbitrary type.
3715 * @return max(__val, __lo) if __val < __hi or min(__val, __hi) otherwise.
3717 template<typename _Tp>
3718 constexpr const _Tp&
3719 clamp(const _Tp& __val, const _Tp& __lo, const _Tp& __hi)
3721 __glibcxx_assert(!(__hi < __lo));
3722 return (__val < __lo) ? __lo : (__hi < __val) ? __hi : __val;
3726 * @brief Returns the value clamped between lo and hi.
3727 * @ingroup sorting_algorithms
3728 * @param __val A value of arbitrary type.
3729 * @param __lo A lower limit of arbitrary type.
3730 * @param __hi An upper limit of arbitrary type.
3731 * @param __comp A comparison functor.
3732 * @return max(__val, __lo, __comp) if __comp(__val, __hi)
3733 * or min(__val, __hi, __comp) otherwise.
3735 template<typename _Tp, typename _Compare>
3736 constexpr const _Tp&
3737 clamp(const _Tp& __val, const _Tp& __lo, const _Tp& __hi, _Compare __comp)
3739 __glibcxx_assert(!__comp(__hi, __lo));
3740 return __comp(__val, __lo) ? __lo : __comp(__hi, __val) ? __hi : __val;
3742 #endif // C++17
3743 #endif // C++14
3745 #ifdef _GLIBCXX_USE_C99_STDINT_TR1
3747 * @brief Generate two uniformly distributed integers using a
3748 * single distribution invocation.
3749 * @param __b0 The upper bound for the first integer.
3750 * @param __b1 The upper bound for the second integer.
3751 * @param __g A UniformRandomBitGenerator.
3752 * @return A pair (i, j) with i and j uniformly distributed
3753 * over [0, __b0) and [0, __b1), respectively.
3755 * Requires: __b0 * __b1 <= __g.max() - __g.min().
3757 * Using uniform_int_distribution with a range that is very
3758 * small relative to the range of the generator ends up wasting
3759 * potentially expensively generated randomness, since
3760 * uniform_int_distribution does not store leftover randomness
3761 * between invocations.
3763 * If we know we want two integers in ranges that are sufficiently
3764 * small, we can compose the ranges, use a single distribution
3765 * invocation, and significantly reduce the waste.
3767 template<typename _IntType, typename _UniformRandomBitGenerator>
3768 pair<_IntType, _IntType>
3769 __gen_two_uniform_ints(_IntType __b0, _IntType __b1,
3770 _UniformRandomBitGenerator&& __g)
3772 _IntType __x
3773 = uniform_int_distribution<_IntType>{0, (__b0 * __b1) - 1}(__g);
3774 return std::make_pair(__x / __b1, __x % __b1);
3778 * @brief Shuffle the elements of a sequence using a uniform random
3779 * number generator.
3780 * @ingroup mutating_algorithms
3781 * @param __first A forward iterator.
3782 * @param __last A forward iterator.
3783 * @param __g A UniformRandomNumberGenerator (26.5.1.3).
3784 * @return Nothing.
3786 * Reorders the elements in the range @p [__first,__last) using @p __g to
3787 * provide random numbers.
3789 template<typename _RandomAccessIterator,
3790 typename _UniformRandomNumberGenerator>
3791 void
3792 shuffle(_RandomAccessIterator __first, _RandomAccessIterator __last,
3793 _UniformRandomNumberGenerator&& __g)
3795 // concept requirements
3796 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept<
3797 _RandomAccessIterator>)
3798 __glibcxx_requires_valid_range(__first, __last);
3800 if (__first == __last)
3801 return;
3803 typedef typename iterator_traits<_RandomAccessIterator>::difference_type
3804 _DistanceType;
3806 typedef typename std::make_unsigned<_DistanceType>::type __ud_type;
3807 typedef typename std::uniform_int_distribution<__ud_type> __distr_type;
3808 typedef typename __distr_type::param_type __p_type;
3810 typedef typename remove_reference<_UniformRandomNumberGenerator>::type
3811 _Gen;
3812 typedef typename common_type<typename _Gen::result_type, __ud_type>::type
3813 __uc_type;
3815 const __uc_type __urngrange = __g.max() - __g.min();
3816 const __uc_type __urange = __uc_type(__last - __first);
3818 if (__urngrange / __urange >= __urange)
3819 // I.e. (__urngrange >= __urange * __urange) but without wrap issues.
3821 _RandomAccessIterator __i = __first + 1;
3823 // Since we know the range isn't empty, an even number of elements
3824 // means an uneven number of elements /to swap/, in which case we
3825 // do the first one up front:
3827 if ((__urange % 2) == 0)
3829 __distr_type __d{0, 1};
3830 std::iter_swap(__i++, __first + __d(__g));
3833 // Now we know that __last - __i is even, so we do the rest in pairs,
3834 // using a single distribution invocation to produce swap positions
3835 // for two successive elements at a time:
3837 while (__i != __last)
3839 const __uc_type __swap_range = __uc_type(__i - __first) + 1;
3841 const pair<__uc_type, __uc_type> __pospos =
3842 __gen_two_uniform_ints(__swap_range, __swap_range + 1, __g);
3844 std::iter_swap(__i++, __first + __pospos.first);
3845 std::iter_swap(__i++, __first + __pospos.second);
3848 return;
3851 __distr_type __d;
3853 for (_RandomAccessIterator __i = __first + 1; __i != __last; ++__i)
3854 std::iter_swap(__i, __first + __d(__g, __p_type(0, __i - __first)));
3856 #endif
3858 #endif // C++11
3860 _GLIBCXX_END_NAMESPACE_VERSION
3862 _GLIBCXX_BEGIN_NAMESPACE_ALGO
3865 * @brief Apply a function to every element of a sequence.
3866 * @ingroup non_mutating_algorithms
3867 * @param __first An input iterator.
3868 * @param __last An input iterator.
3869 * @param __f A unary function object.
3870 * @return @p __f
3872 * Applies the function object @p __f to each element in the range
3873 * @p [first,last). @p __f must not modify the order of the sequence.
3874 * If @p __f has a return value it is ignored.
3876 template<typename _InputIterator, typename _Function>
3877 _Function
3878 for_each(_InputIterator __first, _InputIterator __last, _Function __f)
3880 // concept requirements
3881 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
3882 __glibcxx_requires_valid_range(__first, __last);
3883 for (; __first != __last; ++__first)
3884 __f(*__first);
3885 return __f; // N.B. [alg.foreach] says std::move(f) but it's redundant.
3889 * @brief Find the first occurrence of a value in a sequence.
3890 * @ingroup non_mutating_algorithms
3891 * @param __first An input iterator.
3892 * @param __last An input iterator.
3893 * @param __val The value to find.
3894 * @return The first iterator @c i in the range @p [__first,__last)
3895 * such that @c *i == @p __val, or @p __last if no such iterator exists.
3897 template<typename _InputIterator, typename _Tp>
3898 inline _InputIterator
3899 find(_InputIterator __first, _InputIterator __last,
3900 const _Tp& __val)
3902 // concept requirements
3903 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
3904 __glibcxx_function_requires(_EqualOpConcept<
3905 typename iterator_traits<_InputIterator>::value_type, _Tp>)
3906 __glibcxx_requires_valid_range(__first, __last);
3907 return std::__find_if(__first, __last,
3908 __gnu_cxx::__ops::__iter_equals_val(__val));
3912 * @brief Find the first element in a sequence for which a
3913 * predicate is true.
3914 * @ingroup non_mutating_algorithms
3915 * @param __first An input iterator.
3916 * @param __last An input iterator.
3917 * @param __pred A predicate.
3918 * @return The first iterator @c i in the range @p [__first,__last)
3919 * such that @p __pred(*i) is true, or @p __last if no such iterator exists.
3921 template<typename _InputIterator, typename _Predicate>
3922 inline _InputIterator
3923 find_if(_InputIterator __first, _InputIterator __last,
3924 _Predicate __pred)
3926 // concept requirements
3927 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
3928 __glibcxx_function_requires(_UnaryPredicateConcept<_Predicate,
3929 typename iterator_traits<_InputIterator>::value_type>)
3930 __glibcxx_requires_valid_range(__first, __last);
3932 return std::__find_if(__first, __last,
3933 __gnu_cxx::__ops::__pred_iter(__pred));
3937 * @brief Find element from a set in a sequence.
3938 * @ingroup non_mutating_algorithms
3939 * @param __first1 Start of range to search.
3940 * @param __last1 End of range to search.
3941 * @param __first2 Start of match candidates.
3942 * @param __last2 End of match candidates.
3943 * @return The first iterator @c i in the range
3944 * @p [__first1,__last1) such that @c *i == @p *(i2) such that i2 is an
3945 * iterator in [__first2,__last2), or @p __last1 if no such iterator exists.
3947 * Searches the range @p [__first1,__last1) for an element that is
3948 * equal to some element in the range [__first2,__last2). If
3949 * found, returns an iterator in the range [__first1,__last1),
3950 * otherwise returns @p __last1.
3952 template<typename _InputIterator, typename _ForwardIterator>
3953 _InputIterator
3954 find_first_of(_InputIterator __first1, _InputIterator __last1,
3955 _ForwardIterator __first2, _ForwardIterator __last2)
3957 // concept requirements
3958 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
3959 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
3960 __glibcxx_function_requires(_EqualOpConcept<
3961 typename iterator_traits<_InputIterator>::value_type,
3962 typename iterator_traits<_ForwardIterator>::value_type>)
3963 __glibcxx_requires_valid_range(__first1, __last1);
3964 __glibcxx_requires_valid_range(__first2, __last2);
3966 for (; __first1 != __last1; ++__first1)
3967 for (_ForwardIterator __iter = __first2; __iter != __last2; ++__iter)
3968 if (*__first1 == *__iter)
3969 return __first1;
3970 return __last1;
3974 * @brief Find element from a set in a sequence using a predicate.
3975 * @ingroup non_mutating_algorithms
3976 * @param __first1 Start of range to search.
3977 * @param __last1 End of range to search.
3978 * @param __first2 Start of match candidates.
3979 * @param __last2 End of match candidates.
3980 * @param __comp Predicate to use.
3981 * @return The first iterator @c i in the range
3982 * @p [__first1,__last1) such that @c comp(*i, @p *(i2)) is true
3983 * and i2 is an iterator in [__first2,__last2), or @p __last1 if no
3984 * such iterator exists.
3987 * Searches the range @p [__first1,__last1) for an element that is
3988 * equal to some element in the range [__first2,__last2). If
3989 * found, returns an iterator in the range [__first1,__last1),
3990 * otherwise returns @p __last1.
3992 template<typename _InputIterator, typename _ForwardIterator,
3993 typename _BinaryPredicate>
3994 _InputIterator
3995 find_first_of(_InputIterator __first1, _InputIterator __last1,
3996 _ForwardIterator __first2, _ForwardIterator __last2,
3997 _BinaryPredicate __comp)
3999 // concept requirements
4000 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
4001 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
4002 __glibcxx_function_requires(_BinaryPredicateConcept<_BinaryPredicate,
4003 typename iterator_traits<_InputIterator>::value_type,
4004 typename iterator_traits<_ForwardIterator>::value_type>)
4005 __glibcxx_requires_valid_range(__first1, __last1);
4006 __glibcxx_requires_valid_range(__first2, __last2);
4008 for (; __first1 != __last1; ++__first1)
4009 for (_ForwardIterator __iter = __first2; __iter != __last2; ++__iter)
4010 if (__comp(*__first1, *__iter))
4011 return __first1;
4012 return __last1;
4016 * @brief Find two adjacent values in a sequence that are equal.
4017 * @ingroup non_mutating_algorithms
4018 * @param __first A forward iterator.
4019 * @param __last A forward iterator.
4020 * @return The first iterator @c i such that @c i and @c i+1 are both
4021 * valid iterators in @p [__first,__last) and such that @c *i == @c *(i+1),
4022 * or @p __last if no such iterator exists.
4024 template<typename _ForwardIterator>
4025 inline _ForwardIterator
4026 adjacent_find(_ForwardIterator __first, _ForwardIterator __last)
4028 // concept requirements
4029 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
4030 __glibcxx_function_requires(_EqualityComparableConcept<
4031 typename iterator_traits<_ForwardIterator>::value_type>)
4032 __glibcxx_requires_valid_range(__first, __last);
4034 return std::__adjacent_find(__first, __last,
4035 __gnu_cxx::__ops::__iter_equal_to_iter());
4039 * @brief Find two adjacent values in a sequence using a predicate.
4040 * @ingroup non_mutating_algorithms
4041 * @param __first A forward iterator.
4042 * @param __last A forward iterator.
4043 * @param __binary_pred A binary predicate.
4044 * @return The first iterator @c i such that @c i and @c i+1 are both
4045 * valid iterators in @p [__first,__last) and such that
4046 * @p __binary_pred(*i,*(i+1)) is true, or @p __last if no such iterator
4047 * exists.
4049 template<typename _ForwardIterator, typename _BinaryPredicate>
4050 inline _ForwardIterator
4051 adjacent_find(_ForwardIterator __first, _ForwardIterator __last,
4052 _BinaryPredicate __binary_pred)
4054 // concept requirements
4055 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
4056 __glibcxx_function_requires(_BinaryPredicateConcept<_BinaryPredicate,
4057 typename iterator_traits<_ForwardIterator>::value_type,
4058 typename iterator_traits<_ForwardIterator>::value_type>)
4059 __glibcxx_requires_valid_range(__first, __last);
4061 return std::__adjacent_find(__first, __last,
4062 __gnu_cxx::__ops::__iter_comp_iter(__binary_pred));
4066 * @brief Count the number of copies of a value in a sequence.
4067 * @ingroup non_mutating_algorithms
4068 * @param __first An input iterator.
4069 * @param __last An input iterator.
4070 * @param __value The value to be counted.
4071 * @return The number of iterators @c i in the range @p [__first,__last)
4072 * for which @c *i == @p __value
4074 template<typename _InputIterator, typename _Tp>
4075 inline typename iterator_traits<_InputIterator>::difference_type
4076 count(_InputIterator __first, _InputIterator __last, const _Tp& __value)
4078 // concept requirements
4079 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
4080 __glibcxx_function_requires(_EqualOpConcept<
4081 typename iterator_traits<_InputIterator>::value_type, _Tp>)
4082 __glibcxx_requires_valid_range(__first, __last);
4084 return std::__count_if(__first, __last,
4085 __gnu_cxx::__ops::__iter_equals_val(__value));
4089 * @brief Count the elements of a sequence for which a predicate is true.
4090 * @ingroup non_mutating_algorithms
4091 * @param __first An input iterator.
4092 * @param __last An input iterator.
4093 * @param __pred A predicate.
4094 * @return The number of iterators @c i in the range @p [__first,__last)
4095 * for which @p __pred(*i) is true.
4097 template<typename _InputIterator, typename _Predicate>
4098 inline typename iterator_traits<_InputIterator>::difference_type
4099 count_if(_InputIterator __first, _InputIterator __last, _Predicate __pred)
4101 // concept requirements
4102 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
4103 __glibcxx_function_requires(_UnaryPredicateConcept<_Predicate,
4104 typename iterator_traits<_InputIterator>::value_type>)
4105 __glibcxx_requires_valid_range(__first, __last);
4107 return std::__count_if(__first, __last,
4108 __gnu_cxx::__ops::__pred_iter(__pred));
4112 * @brief Search a sequence for a matching sub-sequence.
4113 * @ingroup non_mutating_algorithms
4114 * @param __first1 A forward iterator.
4115 * @param __last1 A forward iterator.
4116 * @param __first2 A forward iterator.
4117 * @param __last2 A forward iterator.
4118 * @return The first iterator @c i in the range @p
4119 * [__first1,__last1-(__last2-__first2)) such that @c *(i+N) == @p
4120 * *(__first2+N) for each @c N in the range @p
4121 * [0,__last2-__first2), or @p __last1 if no such iterator exists.
4123 * Searches the range @p [__first1,__last1) for a sub-sequence that
4124 * compares equal value-by-value with the sequence given by @p
4125 * [__first2,__last2) and returns an iterator to the first element
4126 * of the sub-sequence, or @p __last1 if the sub-sequence is not
4127 * found.
4129 * Because the sub-sequence must lie completely within the range @p
4130 * [__first1,__last1) it must start at a position less than @p
4131 * __last1-(__last2-__first2) where @p __last2-__first2 is the
4132 * length of the sub-sequence.
4134 * This means that the returned iterator @c i will be in the range
4135 * @p [__first1,__last1-(__last2-__first2))
4137 template<typename _ForwardIterator1, typename _ForwardIterator2>
4138 inline _ForwardIterator1
4139 search(_ForwardIterator1 __first1, _ForwardIterator1 __last1,
4140 _ForwardIterator2 __first2, _ForwardIterator2 __last2)
4142 // concept requirements
4143 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator1>)
4144 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator2>)
4145 __glibcxx_function_requires(_EqualOpConcept<
4146 typename iterator_traits<_ForwardIterator1>::value_type,
4147 typename iterator_traits<_ForwardIterator2>::value_type>)
4148 __glibcxx_requires_valid_range(__first1, __last1);
4149 __glibcxx_requires_valid_range(__first2, __last2);
4151 return std::__search(__first1, __last1, __first2, __last2,
4152 __gnu_cxx::__ops::__iter_equal_to_iter());
4156 * @brief Search a sequence for a matching sub-sequence using a predicate.
4157 * @ingroup non_mutating_algorithms
4158 * @param __first1 A forward iterator.
4159 * @param __last1 A forward iterator.
4160 * @param __first2 A forward iterator.
4161 * @param __last2 A forward iterator.
4162 * @param __predicate A binary predicate.
4163 * @return The first iterator @c i in the range
4164 * @p [__first1,__last1-(__last2-__first2)) such that
4165 * @p __predicate(*(i+N),*(__first2+N)) is true for each @c N in the range
4166 * @p [0,__last2-__first2), or @p __last1 if no such iterator exists.
4168 * Searches the range @p [__first1,__last1) for a sub-sequence that
4169 * compares equal value-by-value with the sequence given by @p
4170 * [__first2,__last2), using @p __predicate to determine equality,
4171 * and returns an iterator to the first element of the
4172 * sub-sequence, or @p __last1 if no such iterator exists.
4174 * @see search(_ForwardIter1, _ForwardIter1, _ForwardIter2, _ForwardIter2)
4176 template<typename _ForwardIterator1, typename _ForwardIterator2,
4177 typename _BinaryPredicate>
4178 inline _ForwardIterator1
4179 search(_ForwardIterator1 __first1, _ForwardIterator1 __last1,
4180 _ForwardIterator2 __first2, _ForwardIterator2 __last2,
4181 _BinaryPredicate __predicate)
4183 // concept requirements
4184 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator1>)
4185 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator2>)
4186 __glibcxx_function_requires(_BinaryPredicateConcept<_BinaryPredicate,
4187 typename iterator_traits<_ForwardIterator1>::value_type,
4188 typename iterator_traits<_ForwardIterator2>::value_type>)
4189 __glibcxx_requires_valid_range(__first1, __last1);
4190 __glibcxx_requires_valid_range(__first2, __last2);
4192 return std::__search(__first1, __last1, __first2, __last2,
4193 __gnu_cxx::__ops::__iter_comp_iter(__predicate));
4197 * @brief Search a sequence for a number of consecutive values.
4198 * @ingroup non_mutating_algorithms
4199 * @param __first A forward iterator.
4200 * @param __last A forward iterator.
4201 * @param __count The number of consecutive values.
4202 * @param __val The value to find.
4203 * @return The first iterator @c i in the range @p
4204 * [__first,__last-__count) such that @c *(i+N) == @p __val for
4205 * each @c N in the range @p [0,__count), or @p __last if no such
4206 * iterator exists.
4208 * Searches the range @p [__first,__last) for @p count consecutive elements
4209 * equal to @p __val.
4211 template<typename _ForwardIterator, typename _Integer, typename _Tp>
4212 inline _ForwardIterator
4213 search_n(_ForwardIterator __first, _ForwardIterator __last,
4214 _Integer __count, const _Tp& __val)
4216 // concept requirements
4217 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
4218 __glibcxx_function_requires(_EqualOpConcept<
4219 typename iterator_traits<_ForwardIterator>::value_type, _Tp>)
4220 __glibcxx_requires_valid_range(__first, __last);
4222 return std::__search_n(__first, __last, __count,
4223 __gnu_cxx::__ops::__iter_equals_val(__val));
4228 * @brief Search a sequence for a number of consecutive values using a
4229 * predicate.
4230 * @ingroup non_mutating_algorithms
4231 * @param __first A forward iterator.
4232 * @param __last A forward iterator.
4233 * @param __count The number of consecutive values.
4234 * @param __val The value to find.
4235 * @param __binary_pred A binary predicate.
4236 * @return The first iterator @c i in the range @p
4237 * [__first,__last-__count) such that @p
4238 * __binary_pred(*(i+N),__val) is true for each @c N in the range
4239 * @p [0,__count), or @p __last if no such iterator exists.
4241 * Searches the range @p [__first,__last) for @p __count
4242 * consecutive elements for which the predicate returns true.
4244 template<typename _ForwardIterator, typename _Integer, typename _Tp,
4245 typename _BinaryPredicate>
4246 inline _ForwardIterator
4247 search_n(_ForwardIterator __first, _ForwardIterator __last,
4248 _Integer __count, const _Tp& __val,
4249 _BinaryPredicate __binary_pred)
4251 // concept requirements
4252 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
4253 __glibcxx_function_requires(_BinaryPredicateConcept<_BinaryPredicate,
4254 typename iterator_traits<_ForwardIterator>::value_type, _Tp>)
4255 __glibcxx_requires_valid_range(__first, __last);
4257 return std::__search_n(__first, __last, __count,
4258 __gnu_cxx::__ops::__iter_comp_val(__binary_pred, __val));
4263 * @brief Perform an operation on a sequence.
4264 * @ingroup mutating_algorithms
4265 * @param __first An input iterator.
4266 * @param __last An input iterator.
4267 * @param __result An output iterator.
4268 * @param __unary_op A unary operator.
4269 * @return An output iterator equal to @p __result+(__last-__first).
4271 * Applies the operator to each element in the input range and assigns
4272 * the results to successive elements of the output sequence.
4273 * Evaluates @p *(__result+N)=unary_op(*(__first+N)) for each @c N in the
4274 * range @p [0,__last-__first).
4276 * @p unary_op must not alter its argument.
4278 template<typename _InputIterator, typename _OutputIterator,
4279 typename _UnaryOperation>
4280 _OutputIterator
4281 transform(_InputIterator __first, _InputIterator __last,
4282 _OutputIterator __result, _UnaryOperation __unary_op)
4284 // concept requirements
4285 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
4286 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
4287 // "the type returned by a _UnaryOperation"
4288 __typeof__(__unary_op(*__first))>)
4289 __glibcxx_requires_valid_range(__first, __last);
4291 for (; __first != __last; ++__first, (void)++__result)
4292 *__result = __unary_op(*__first);
4293 return __result;
4297 * @brief Perform an operation on corresponding elements of two sequences.
4298 * @ingroup mutating_algorithms
4299 * @param __first1 An input iterator.
4300 * @param __last1 An input iterator.
4301 * @param __first2 An input iterator.
4302 * @param __result An output iterator.
4303 * @param __binary_op A binary operator.
4304 * @return An output iterator equal to @p result+(last-first).
4306 * Applies the operator to the corresponding elements in the two
4307 * input ranges and assigns the results to successive elements of the
4308 * output sequence.
4309 * Evaluates @p
4310 * *(__result+N)=__binary_op(*(__first1+N),*(__first2+N)) for each
4311 * @c N in the range @p [0,__last1-__first1).
4313 * @p binary_op must not alter either of its arguments.
4315 template<typename _InputIterator1, typename _InputIterator2,
4316 typename _OutputIterator, typename _BinaryOperation>
4317 _OutputIterator
4318 transform(_InputIterator1 __first1, _InputIterator1 __last1,
4319 _InputIterator2 __first2, _OutputIterator __result,
4320 _BinaryOperation __binary_op)
4322 // concept requirements
4323 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
4324 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
4325 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
4326 // "the type returned by a _BinaryOperation"
4327 __typeof__(__binary_op(*__first1,*__first2))>)
4328 __glibcxx_requires_valid_range(__first1, __last1);
4330 for (; __first1 != __last1; ++__first1, (void)++__first2, ++__result)
4331 *__result = __binary_op(*__first1, *__first2);
4332 return __result;
4336 * @brief Replace each occurrence of one value in a sequence with another
4337 * value.
4338 * @ingroup mutating_algorithms
4339 * @param __first A forward iterator.
4340 * @param __last A forward iterator.
4341 * @param __old_value The value to be replaced.
4342 * @param __new_value The replacement value.
4343 * @return replace() returns no value.
4345 * For each iterator @c i in the range @p [__first,__last) if @c *i ==
4346 * @p __old_value then the assignment @c *i = @p __new_value is performed.
4348 template<typename _ForwardIterator, typename _Tp>
4349 void
4350 replace(_ForwardIterator __first, _ForwardIterator __last,
4351 const _Tp& __old_value, const _Tp& __new_value)
4353 // concept requirements
4354 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
4355 _ForwardIterator>)
4356 __glibcxx_function_requires(_EqualOpConcept<
4357 typename iterator_traits<_ForwardIterator>::value_type, _Tp>)
4358 __glibcxx_function_requires(_ConvertibleConcept<_Tp,
4359 typename iterator_traits<_ForwardIterator>::value_type>)
4360 __glibcxx_requires_valid_range(__first, __last);
4362 for (; __first != __last; ++__first)
4363 if (*__first == __old_value)
4364 *__first = __new_value;
4368 * @brief Replace each value in a sequence for which a predicate returns
4369 * true with another value.
4370 * @ingroup mutating_algorithms
4371 * @param __first A forward iterator.
4372 * @param __last A forward iterator.
4373 * @param __pred A predicate.
4374 * @param __new_value The replacement value.
4375 * @return replace_if() returns no value.
4377 * For each iterator @c i in the range @p [__first,__last) if @p __pred(*i)
4378 * is true then the assignment @c *i = @p __new_value is performed.
4380 template<typename _ForwardIterator, typename _Predicate, typename _Tp>
4381 void
4382 replace_if(_ForwardIterator __first, _ForwardIterator __last,
4383 _Predicate __pred, const _Tp& __new_value)
4385 // concept requirements
4386 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
4387 _ForwardIterator>)
4388 __glibcxx_function_requires(_ConvertibleConcept<_Tp,
4389 typename iterator_traits<_ForwardIterator>::value_type>)
4390 __glibcxx_function_requires(_UnaryPredicateConcept<_Predicate,
4391 typename iterator_traits<_ForwardIterator>::value_type>)
4392 __glibcxx_requires_valid_range(__first, __last);
4394 for (; __first != __last; ++__first)
4395 if (__pred(*__first))
4396 *__first = __new_value;
4400 * @brief Assign the result of a function object to each value in a
4401 * sequence.
4402 * @ingroup mutating_algorithms
4403 * @param __first A forward iterator.
4404 * @param __last A forward iterator.
4405 * @param __gen A function object taking no arguments and returning
4406 * std::iterator_traits<_ForwardIterator>::value_type
4407 * @return generate() returns no value.
4409 * Performs the assignment @c *i = @p __gen() for each @c i in the range
4410 * @p [__first,__last).
4412 template<typename _ForwardIterator, typename _Generator>
4413 void
4414 generate(_ForwardIterator __first, _ForwardIterator __last,
4415 _Generator __gen)
4417 // concept requirements
4418 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
4419 __glibcxx_function_requires(_GeneratorConcept<_Generator,
4420 typename iterator_traits<_ForwardIterator>::value_type>)
4421 __glibcxx_requires_valid_range(__first, __last);
4423 for (; __first != __last; ++__first)
4424 *__first = __gen();
4428 * @brief Assign the result of a function object to each value in a
4429 * sequence.
4430 * @ingroup mutating_algorithms
4431 * @param __first A forward iterator.
4432 * @param __n The length of the sequence.
4433 * @param __gen A function object taking no arguments and returning
4434 * std::iterator_traits<_ForwardIterator>::value_type
4435 * @return The end of the sequence, @p __first+__n
4437 * Performs the assignment @c *i = @p __gen() for each @c i in the range
4438 * @p [__first,__first+__n).
4440 * _GLIBCXX_RESOLVE_LIB_DEFECTS
4441 * DR 865. More algorithms that throw away information
4443 template<typename _OutputIterator, typename _Size, typename _Generator>
4444 _OutputIterator
4445 generate_n(_OutputIterator __first, _Size __n, _Generator __gen)
4447 // concept requirements
4448 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
4449 // "the type returned by a _Generator"
4450 __typeof__(__gen())>)
4452 for (__decltype(__n + 0) __niter = __n;
4453 __niter > 0; --__niter, ++__first)
4454 *__first = __gen();
4455 return __first;
4459 * @brief Copy a sequence, removing consecutive duplicate values.
4460 * @ingroup mutating_algorithms
4461 * @param __first An input iterator.
4462 * @param __last An input iterator.
4463 * @param __result An output iterator.
4464 * @return An iterator designating the end of the resulting sequence.
4466 * Copies each element in the range @p [__first,__last) to the range
4467 * beginning at @p __result, except that only the first element is copied
4468 * from groups of consecutive elements that compare equal.
4469 * unique_copy() is stable, so the relative order of elements that are
4470 * copied is unchanged.
4472 * _GLIBCXX_RESOLVE_LIB_DEFECTS
4473 * DR 241. Does unique_copy() require CopyConstructible and Assignable?
4475 * _GLIBCXX_RESOLVE_LIB_DEFECTS
4476 * DR 538. 241 again: Does unique_copy() require CopyConstructible and
4477 * Assignable?
4479 template<typename _InputIterator, typename _OutputIterator>
4480 inline _OutputIterator
4481 unique_copy(_InputIterator __first, _InputIterator __last,
4482 _OutputIterator __result)
4484 // concept requirements
4485 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
4486 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
4487 typename iterator_traits<_InputIterator>::value_type>)
4488 __glibcxx_function_requires(_EqualityComparableConcept<
4489 typename iterator_traits<_InputIterator>::value_type>)
4490 __glibcxx_requires_valid_range(__first, __last);
4492 if (__first == __last)
4493 return __result;
4494 return std::__unique_copy(__first, __last, __result,
4495 __gnu_cxx::__ops::__iter_equal_to_iter(),
4496 std::__iterator_category(__first),
4497 std::__iterator_category(__result));
4501 * @brief Copy a sequence, removing consecutive values using a predicate.
4502 * @ingroup mutating_algorithms
4503 * @param __first An input iterator.
4504 * @param __last An input iterator.
4505 * @param __result An output iterator.
4506 * @param __binary_pred A binary predicate.
4507 * @return An iterator designating the end of the resulting sequence.
4509 * Copies each element in the range @p [__first,__last) to the range
4510 * beginning at @p __result, except that only the first element is copied
4511 * from groups of consecutive elements for which @p __binary_pred returns
4512 * true.
4513 * unique_copy() is stable, so the relative order of elements that are
4514 * copied is unchanged.
4516 * _GLIBCXX_RESOLVE_LIB_DEFECTS
4517 * DR 241. Does unique_copy() require CopyConstructible and Assignable?
4519 template<typename _InputIterator, typename _OutputIterator,
4520 typename _BinaryPredicate>
4521 inline _OutputIterator
4522 unique_copy(_InputIterator __first, _InputIterator __last,
4523 _OutputIterator __result,
4524 _BinaryPredicate __binary_pred)
4526 // concept requirements -- predicates checked later
4527 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
4528 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
4529 typename iterator_traits<_InputIterator>::value_type>)
4530 __glibcxx_requires_valid_range(__first, __last);
4532 if (__first == __last)
4533 return __result;
4534 return std::__unique_copy(__first, __last, __result,
4535 __gnu_cxx::__ops::__iter_comp_iter(__binary_pred),
4536 std::__iterator_category(__first),
4537 std::__iterator_category(__result));
4540 #if _GLIBCXX_HOSTED
4542 * @brief Randomly shuffle the elements of a sequence.
4543 * @ingroup mutating_algorithms
4544 * @param __first A forward iterator.
4545 * @param __last A forward iterator.
4546 * @return Nothing.
4548 * Reorder the elements in the range @p [__first,__last) using a random
4549 * distribution, so that every possible ordering of the sequence is
4550 * equally likely.
4552 template<typename _RandomAccessIterator>
4553 inline void
4554 random_shuffle(_RandomAccessIterator __first, _RandomAccessIterator __last)
4556 // concept requirements
4557 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept<
4558 _RandomAccessIterator>)
4559 __glibcxx_requires_valid_range(__first, __last);
4561 if (__first != __last)
4562 for (_RandomAccessIterator __i = __first + 1; __i != __last; ++__i)
4564 // XXX rand() % N is not uniformly distributed
4565 _RandomAccessIterator __j = __first
4566 + std::rand() % ((__i - __first) + 1);
4567 if (__i != __j)
4568 std::iter_swap(__i, __j);
4571 #endif
4574 * @brief Shuffle the elements of a sequence using a random number
4575 * generator.
4576 * @ingroup mutating_algorithms
4577 * @param __first A forward iterator.
4578 * @param __last A forward iterator.
4579 * @param __rand The RNG functor or function.
4580 * @return Nothing.
4582 * Reorders the elements in the range @p [__first,__last) using @p __rand to
4583 * provide a random distribution. Calling @p __rand(N) for a positive
4584 * integer @p N should return a randomly chosen integer from the
4585 * range [0,N).
4587 template<typename _RandomAccessIterator, typename _RandomNumberGenerator>
4588 void
4589 random_shuffle(_RandomAccessIterator __first, _RandomAccessIterator __last,
4590 #if __cplusplus >= 201103L
4591 _RandomNumberGenerator&& __rand)
4592 #else
4593 _RandomNumberGenerator& __rand)
4594 #endif
4596 // concept requirements
4597 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept<
4598 _RandomAccessIterator>)
4599 __glibcxx_requires_valid_range(__first, __last);
4601 if (__first == __last)
4602 return;
4603 for (_RandomAccessIterator __i = __first + 1; __i != __last; ++__i)
4605 _RandomAccessIterator __j = __first + __rand((__i - __first) + 1);
4606 if (__i != __j)
4607 std::iter_swap(__i, __j);
4613 * @brief Move elements for which a predicate is true to the beginning
4614 * of a sequence.
4615 * @ingroup mutating_algorithms
4616 * @param __first A forward iterator.
4617 * @param __last A forward iterator.
4618 * @param __pred A predicate functor.
4619 * @return An iterator @p middle such that @p __pred(i) is true for each
4620 * iterator @p i in the range @p [__first,middle) and false for each @p i
4621 * in the range @p [middle,__last).
4623 * @p __pred must not modify its operand. @p partition() does not preserve
4624 * the relative ordering of elements in each group, use
4625 * @p stable_partition() if this is needed.
4627 template<typename _ForwardIterator, typename _Predicate>
4628 inline _ForwardIterator
4629 partition(_ForwardIterator __first, _ForwardIterator __last,
4630 _Predicate __pred)
4632 // concept requirements
4633 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
4634 _ForwardIterator>)
4635 __glibcxx_function_requires(_UnaryPredicateConcept<_Predicate,
4636 typename iterator_traits<_ForwardIterator>::value_type>)
4637 __glibcxx_requires_valid_range(__first, __last);
4639 return std::__partition(__first, __last, __pred,
4640 std::__iterator_category(__first));
4645 * @brief Sort the smallest elements of a sequence.
4646 * @ingroup sorting_algorithms
4647 * @param __first An iterator.
4648 * @param __middle Another iterator.
4649 * @param __last Another iterator.
4650 * @return Nothing.
4652 * Sorts the smallest @p (__middle-__first) elements in the range
4653 * @p [first,last) and moves them to the range @p [__first,__middle). The
4654 * order of the remaining elements in the range @p [__middle,__last) is
4655 * undefined.
4656 * After the sort if @e i and @e j are iterators in the range
4657 * @p [__first,__middle) such that i precedes j and @e k is an iterator in
4658 * the range @p [__middle,__last) then *j<*i and *k<*i are both false.
4660 template<typename _RandomAccessIterator>
4661 inline void
4662 partial_sort(_RandomAccessIterator __first,
4663 _RandomAccessIterator __middle,
4664 _RandomAccessIterator __last)
4666 // concept requirements
4667 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept<
4668 _RandomAccessIterator>)
4669 __glibcxx_function_requires(_LessThanComparableConcept<
4670 typename iterator_traits<_RandomAccessIterator>::value_type>)
4671 __glibcxx_requires_valid_range(__first, __middle);
4672 __glibcxx_requires_valid_range(__middle, __last);
4673 __glibcxx_requires_irreflexive(__first, __last);
4675 std::__partial_sort(__first, __middle, __last,
4676 __gnu_cxx::__ops::__iter_less_iter());
4680 * @brief Sort the smallest elements of a sequence using a predicate
4681 * for comparison.
4682 * @ingroup sorting_algorithms
4683 * @param __first An iterator.
4684 * @param __middle Another iterator.
4685 * @param __last Another iterator.
4686 * @param __comp A comparison functor.
4687 * @return Nothing.
4689 * Sorts the smallest @p (__middle-__first) elements in the range
4690 * @p [__first,__last) and moves them to the range @p [__first,__middle). The
4691 * order of the remaining elements in the range @p [__middle,__last) is
4692 * undefined.
4693 * After the sort if @e i and @e j are iterators in the range
4694 * @p [__first,__middle) such that i precedes j and @e k is an iterator in
4695 * the range @p [__middle,__last) then @p *__comp(j,*i) and @p __comp(*k,*i)
4696 * are both false.
4698 template<typename _RandomAccessIterator, typename _Compare>
4699 inline void
4700 partial_sort(_RandomAccessIterator __first,
4701 _RandomAccessIterator __middle,
4702 _RandomAccessIterator __last,
4703 _Compare __comp)
4705 // concept requirements
4706 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept<
4707 _RandomAccessIterator>)
4708 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
4709 typename iterator_traits<_RandomAccessIterator>::value_type,
4710 typename iterator_traits<_RandomAccessIterator>::value_type>)
4711 __glibcxx_requires_valid_range(__first, __middle);
4712 __glibcxx_requires_valid_range(__middle, __last);
4713 __glibcxx_requires_irreflexive_pred(__first, __last, __comp);
4715 std::__partial_sort(__first, __middle, __last,
4716 __gnu_cxx::__ops::__iter_comp_iter(__comp));
4720 * @brief Sort a sequence just enough to find a particular position.
4721 * @ingroup sorting_algorithms
4722 * @param __first An iterator.
4723 * @param __nth Another iterator.
4724 * @param __last Another iterator.
4725 * @return Nothing.
4727 * Rearranges the elements in the range @p [__first,__last) so that @p *__nth
4728 * is the same element that would have been in that position had the
4729 * whole sequence been sorted. The elements either side of @p *__nth are
4730 * not completely sorted, but for any iterator @e i in the range
4731 * @p [__first,__nth) and any iterator @e j in the range @p [__nth,__last) it
4732 * holds that *j < *i is false.
4734 template<typename _RandomAccessIterator>
4735 inline void
4736 nth_element(_RandomAccessIterator __first, _RandomAccessIterator __nth,
4737 _RandomAccessIterator __last)
4739 // concept requirements
4740 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept<
4741 _RandomAccessIterator>)
4742 __glibcxx_function_requires(_LessThanComparableConcept<
4743 typename iterator_traits<_RandomAccessIterator>::value_type>)
4744 __glibcxx_requires_valid_range(__first, __nth);
4745 __glibcxx_requires_valid_range(__nth, __last);
4746 __glibcxx_requires_irreflexive(__first, __last);
4748 if (__first == __last || __nth == __last)
4749 return;
4751 std::__introselect(__first, __nth, __last,
4752 std::__lg(__last - __first) * 2,
4753 __gnu_cxx::__ops::__iter_less_iter());
4757 * @brief Sort a sequence just enough to find a particular position
4758 * using a predicate for comparison.
4759 * @ingroup sorting_algorithms
4760 * @param __first An iterator.
4761 * @param __nth Another iterator.
4762 * @param __last Another iterator.
4763 * @param __comp A comparison functor.
4764 * @return Nothing.
4766 * Rearranges the elements in the range @p [__first,__last) so that @p *__nth
4767 * is the same element that would have been in that position had the
4768 * whole sequence been sorted. The elements either side of @p *__nth are
4769 * not completely sorted, but for any iterator @e i in the range
4770 * @p [__first,__nth) and any iterator @e j in the range @p [__nth,__last) it
4771 * holds that @p __comp(*j,*i) is false.
4773 template<typename _RandomAccessIterator, typename _Compare>
4774 inline void
4775 nth_element(_RandomAccessIterator __first, _RandomAccessIterator __nth,
4776 _RandomAccessIterator __last, _Compare __comp)
4778 // concept requirements
4779 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept<
4780 _RandomAccessIterator>)
4781 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
4782 typename iterator_traits<_RandomAccessIterator>::value_type,
4783 typename iterator_traits<_RandomAccessIterator>::value_type>)
4784 __glibcxx_requires_valid_range(__first, __nth);
4785 __glibcxx_requires_valid_range(__nth, __last);
4786 __glibcxx_requires_irreflexive_pred(__first, __last, __comp);
4788 if (__first == __last || __nth == __last)
4789 return;
4791 std::__introselect(__first, __nth, __last,
4792 std::__lg(__last - __first) * 2,
4793 __gnu_cxx::__ops::__iter_comp_iter(__comp));
4797 * @brief Sort the elements of a sequence.
4798 * @ingroup sorting_algorithms
4799 * @param __first An iterator.
4800 * @param __last Another iterator.
4801 * @return Nothing.
4803 * Sorts the elements in the range @p [__first,__last) in ascending order,
4804 * such that for each iterator @e i in the range @p [__first,__last-1),
4805 * *(i+1)<*i is false.
4807 * The relative ordering of equivalent elements is not preserved, use
4808 * @p stable_sort() if this is needed.
4810 template<typename _RandomAccessIterator>
4811 inline void
4812 sort(_RandomAccessIterator __first, _RandomAccessIterator __last)
4814 // concept requirements
4815 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept<
4816 _RandomAccessIterator>)
4817 __glibcxx_function_requires(_LessThanComparableConcept<
4818 typename iterator_traits<_RandomAccessIterator>::value_type>)
4819 __glibcxx_requires_valid_range(__first, __last);
4820 __glibcxx_requires_irreflexive(__first, __last);
4822 std::__sort(__first, __last, __gnu_cxx::__ops::__iter_less_iter());
4826 * @brief Sort the elements of a sequence using a predicate for comparison.
4827 * @ingroup sorting_algorithms
4828 * @param __first An iterator.
4829 * @param __last Another iterator.
4830 * @param __comp A comparison functor.
4831 * @return Nothing.
4833 * Sorts the elements in the range @p [__first,__last) in ascending order,
4834 * such that @p __comp(*(i+1),*i) is false for every iterator @e i in the
4835 * range @p [__first,__last-1).
4837 * The relative ordering of equivalent elements is not preserved, use
4838 * @p stable_sort() if this is needed.
4840 template<typename _RandomAccessIterator, typename _Compare>
4841 inline void
4842 sort(_RandomAccessIterator __first, _RandomAccessIterator __last,
4843 _Compare __comp)
4845 // concept requirements
4846 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept<
4847 _RandomAccessIterator>)
4848 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
4849 typename iterator_traits<_RandomAccessIterator>::value_type,
4850 typename iterator_traits<_RandomAccessIterator>::value_type>)
4851 __glibcxx_requires_valid_range(__first, __last);
4852 __glibcxx_requires_irreflexive_pred(__first, __last, __comp);
4854 std::__sort(__first, __last, __gnu_cxx::__ops::__iter_comp_iter(__comp));
4857 template<typename _InputIterator1, typename _InputIterator2,
4858 typename _OutputIterator, typename _Compare>
4859 _OutputIterator
4860 __merge(_InputIterator1 __first1, _InputIterator1 __last1,
4861 _InputIterator2 __first2, _InputIterator2 __last2,
4862 _OutputIterator __result, _Compare __comp)
4864 while (__first1 != __last1 && __first2 != __last2)
4866 if (__comp(__first2, __first1))
4868 *__result = *__first2;
4869 ++__first2;
4871 else
4873 *__result = *__first1;
4874 ++__first1;
4876 ++__result;
4878 return std::copy(__first2, __last2,
4879 std::copy(__first1, __last1, __result));
4883 * @brief Merges two sorted ranges.
4884 * @ingroup sorting_algorithms
4885 * @param __first1 An iterator.
4886 * @param __first2 Another iterator.
4887 * @param __last1 Another iterator.
4888 * @param __last2 Another iterator.
4889 * @param __result An iterator pointing to the end of the merged range.
4890 * @return An iterator pointing to the first element <em>not less
4891 * than</em> @e val.
4893 * Merges the ranges @p [__first1,__last1) and @p [__first2,__last2) into
4894 * the sorted range @p [__result, __result + (__last1-__first1) +
4895 * (__last2-__first2)). Both input ranges must be sorted, and the
4896 * output range must not overlap with either of the input ranges.
4897 * The sort is @e stable, that is, for equivalent elements in the
4898 * two ranges, elements from the first range will always come
4899 * before elements from the second.
4901 template<typename _InputIterator1, typename _InputIterator2,
4902 typename _OutputIterator>
4903 inline _OutputIterator
4904 merge(_InputIterator1 __first1, _InputIterator1 __last1,
4905 _InputIterator2 __first2, _InputIterator2 __last2,
4906 _OutputIterator __result)
4908 // concept requirements
4909 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
4910 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
4911 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
4912 typename iterator_traits<_InputIterator1>::value_type>)
4913 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
4914 typename iterator_traits<_InputIterator2>::value_type>)
4915 __glibcxx_function_requires(_LessThanOpConcept<
4916 typename iterator_traits<_InputIterator2>::value_type,
4917 typename iterator_traits<_InputIterator1>::value_type>)
4918 __glibcxx_requires_sorted_set(__first1, __last1, __first2);
4919 __glibcxx_requires_sorted_set(__first2, __last2, __first1);
4920 __glibcxx_requires_irreflexive2(__first1, __last1);
4921 __glibcxx_requires_irreflexive2(__first2, __last2);
4923 return _GLIBCXX_STD_A::__merge(__first1, __last1,
4924 __first2, __last2, __result,
4925 __gnu_cxx::__ops::__iter_less_iter());
4929 * @brief Merges two sorted ranges.
4930 * @ingroup sorting_algorithms
4931 * @param __first1 An iterator.
4932 * @param __first2 Another iterator.
4933 * @param __last1 Another iterator.
4934 * @param __last2 Another iterator.
4935 * @param __result An iterator pointing to the end of the merged range.
4936 * @param __comp A functor to use for comparisons.
4937 * @return An iterator pointing to the first element "not less
4938 * than" @e val.
4940 * Merges the ranges @p [__first1,__last1) and @p [__first2,__last2) into
4941 * the sorted range @p [__result, __result + (__last1-__first1) +
4942 * (__last2-__first2)). Both input ranges must be sorted, and the
4943 * output range must not overlap with either of the input ranges.
4944 * The sort is @e stable, that is, for equivalent elements in the
4945 * two ranges, elements from the first range will always come
4946 * before elements from the second.
4948 * The comparison function should have the same effects on ordering as
4949 * the function used for the initial sort.
4951 template<typename _InputIterator1, typename _InputIterator2,
4952 typename _OutputIterator, typename _Compare>
4953 inline _OutputIterator
4954 merge(_InputIterator1 __first1, _InputIterator1 __last1,
4955 _InputIterator2 __first2, _InputIterator2 __last2,
4956 _OutputIterator __result, _Compare __comp)
4958 // concept requirements
4959 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
4960 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
4961 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
4962 typename iterator_traits<_InputIterator1>::value_type>)
4963 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
4964 typename iterator_traits<_InputIterator2>::value_type>)
4965 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
4966 typename iterator_traits<_InputIterator2>::value_type,
4967 typename iterator_traits<_InputIterator1>::value_type>)
4968 __glibcxx_requires_sorted_set_pred(__first1, __last1, __first2, __comp);
4969 __glibcxx_requires_sorted_set_pred(__first2, __last2, __first1, __comp);
4970 __glibcxx_requires_irreflexive_pred2(__first1, __last1, __comp);
4971 __glibcxx_requires_irreflexive_pred2(__first2, __last2, __comp);
4973 return _GLIBCXX_STD_A::__merge(__first1, __last1,
4974 __first2, __last2, __result,
4975 __gnu_cxx::__ops::__iter_comp_iter(__comp));
4978 template<typename _RandomAccessIterator, typename _Compare>
4979 inline void
4980 __stable_sort(_RandomAccessIterator __first, _RandomAccessIterator __last,
4981 _Compare __comp)
4983 typedef typename iterator_traits<_RandomAccessIterator>::value_type
4984 _ValueType;
4985 typedef typename iterator_traits<_RandomAccessIterator>::difference_type
4986 _DistanceType;
4988 typedef _Temporary_buffer<_RandomAccessIterator, _ValueType> _TmpBuf;
4989 _TmpBuf __buf(__first, __last);
4991 if (__buf.begin() == 0)
4992 std::__inplace_stable_sort(__first, __last, __comp);
4993 else
4994 std::__stable_sort_adaptive(__first, __last, __buf.begin(),
4995 _DistanceType(__buf.size()), __comp);
4999 * @brief Sort the elements of a sequence, preserving the relative order
5000 * of equivalent elements.
5001 * @ingroup sorting_algorithms
5002 * @param __first An iterator.
5003 * @param __last Another iterator.
5004 * @return Nothing.
5006 * Sorts the elements in the range @p [__first,__last) in ascending order,
5007 * such that for each iterator @p i in the range @p [__first,__last-1),
5008 * @p *(i+1)<*i is false.
5010 * The relative ordering of equivalent elements is preserved, so any two
5011 * elements @p x and @p y in the range @p [__first,__last) such that
5012 * @p x<y is false and @p y<x is false will have the same relative
5013 * ordering after calling @p stable_sort().
5015 template<typename _RandomAccessIterator>
5016 inline void
5017 stable_sort(_RandomAccessIterator __first, _RandomAccessIterator __last)
5019 // concept requirements
5020 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept<
5021 _RandomAccessIterator>)
5022 __glibcxx_function_requires(_LessThanComparableConcept<
5023 typename iterator_traits<_RandomAccessIterator>::value_type>)
5024 __glibcxx_requires_valid_range(__first, __last);
5025 __glibcxx_requires_irreflexive(__first, __last);
5027 _GLIBCXX_STD_A::__stable_sort(__first, __last,
5028 __gnu_cxx::__ops::__iter_less_iter());
5032 * @brief Sort the elements of a sequence using a predicate for comparison,
5033 * preserving the relative order of equivalent elements.
5034 * @ingroup sorting_algorithms
5035 * @param __first An iterator.
5036 * @param __last Another iterator.
5037 * @param __comp A comparison functor.
5038 * @return Nothing.
5040 * Sorts the elements in the range @p [__first,__last) in ascending order,
5041 * such that for each iterator @p i in the range @p [__first,__last-1),
5042 * @p __comp(*(i+1),*i) is false.
5044 * The relative ordering of equivalent elements is preserved, so any two
5045 * elements @p x and @p y in the range @p [__first,__last) such that
5046 * @p __comp(x,y) is false and @p __comp(y,x) is false will have the same
5047 * relative ordering after calling @p stable_sort().
5049 template<typename _RandomAccessIterator, typename _Compare>
5050 inline void
5051 stable_sort(_RandomAccessIterator __first, _RandomAccessIterator __last,
5052 _Compare __comp)
5054 // concept requirements
5055 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept<
5056 _RandomAccessIterator>)
5057 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
5058 typename iterator_traits<_RandomAccessIterator>::value_type,
5059 typename iterator_traits<_RandomAccessIterator>::value_type>)
5060 __glibcxx_requires_valid_range(__first, __last);
5061 __glibcxx_requires_irreflexive_pred(__first, __last, __comp);
5063 _GLIBCXX_STD_A::__stable_sort(__first, __last,
5064 __gnu_cxx::__ops::__iter_comp_iter(__comp));
5067 template<typename _InputIterator1, typename _InputIterator2,
5068 typename _OutputIterator,
5069 typename _Compare>
5070 _OutputIterator
5071 __set_union(_InputIterator1 __first1, _InputIterator1 __last1,
5072 _InputIterator2 __first2, _InputIterator2 __last2,
5073 _OutputIterator __result, _Compare __comp)
5075 while (__first1 != __last1 && __first2 != __last2)
5077 if (__comp(__first1, __first2))
5079 *__result = *__first1;
5080 ++__first1;
5082 else if (__comp(__first2, __first1))
5084 *__result = *__first2;
5085 ++__first2;
5087 else
5089 *__result = *__first1;
5090 ++__first1;
5091 ++__first2;
5093 ++__result;
5095 return std::copy(__first2, __last2,
5096 std::copy(__first1, __last1, __result));
5100 * @brief Return the union of two sorted ranges.
5101 * @ingroup set_algorithms
5102 * @param __first1 Start of first range.
5103 * @param __last1 End of first range.
5104 * @param __first2 Start of second range.
5105 * @param __last2 End of second range.
5106 * @return End of the output range.
5107 * @ingroup set_algorithms
5109 * This operation iterates over both ranges, copying elements present in
5110 * each range in order to the output range. Iterators increment for each
5111 * range. When the current element of one range is less than the other,
5112 * that element is copied and the iterator advanced. If an element is
5113 * contained in both ranges, the element from the first range is copied and
5114 * both ranges advance. The output range may not overlap either input
5115 * range.
5117 template<typename _InputIterator1, typename _InputIterator2,
5118 typename _OutputIterator>
5119 inline _OutputIterator
5120 set_union(_InputIterator1 __first1, _InputIterator1 __last1,
5121 _InputIterator2 __first2, _InputIterator2 __last2,
5122 _OutputIterator __result)
5124 // concept requirements
5125 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
5126 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
5127 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
5128 typename iterator_traits<_InputIterator1>::value_type>)
5129 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
5130 typename iterator_traits<_InputIterator2>::value_type>)
5131 __glibcxx_function_requires(_LessThanOpConcept<
5132 typename iterator_traits<_InputIterator1>::value_type,
5133 typename iterator_traits<_InputIterator2>::value_type>)
5134 __glibcxx_function_requires(_LessThanOpConcept<
5135 typename iterator_traits<_InputIterator2>::value_type,
5136 typename iterator_traits<_InputIterator1>::value_type>)
5137 __glibcxx_requires_sorted_set(__first1, __last1, __first2);
5138 __glibcxx_requires_sorted_set(__first2, __last2, __first1);
5139 __glibcxx_requires_irreflexive2(__first1, __last1);
5140 __glibcxx_requires_irreflexive2(__first2, __last2);
5142 return _GLIBCXX_STD_A::__set_union(__first1, __last1,
5143 __first2, __last2, __result,
5144 __gnu_cxx::__ops::__iter_less_iter());
5148 * @brief Return the union of two sorted ranges using a comparison functor.
5149 * @ingroup set_algorithms
5150 * @param __first1 Start of first range.
5151 * @param __last1 End of first range.
5152 * @param __first2 Start of second range.
5153 * @param __last2 End of second range.
5154 * @param __comp The comparison functor.
5155 * @return End of the output range.
5156 * @ingroup set_algorithms
5158 * This operation iterates over both ranges, copying elements present in
5159 * each range in order to the output range. Iterators increment for each
5160 * range. When the current element of one range is less than the other
5161 * according to @p __comp, that element is copied and the iterator advanced.
5162 * If an equivalent element according to @p __comp is contained in both
5163 * ranges, the element from the first range is copied and both ranges
5164 * advance. The output range may not overlap either input range.
5166 template<typename _InputIterator1, typename _InputIterator2,
5167 typename _OutputIterator, typename _Compare>
5168 inline _OutputIterator
5169 set_union(_InputIterator1 __first1, _InputIterator1 __last1,
5170 _InputIterator2 __first2, _InputIterator2 __last2,
5171 _OutputIterator __result, _Compare __comp)
5173 // concept requirements
5174 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
5175 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
5176 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
5177 typename iterator_traits<_InputIterator1>::value_type>)
5178 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
5179 typename iterator_traits<_InputIterator2>::value_type>)
5180 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
5181 typename iterator_traits<_InputIterator1>::value_type,
5182 typename iterator_traits<_InputIterator2>::value_type>)
5183 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
5184 typename iterator_traits<_InputIterator2>::value_type,
5185 typename iterator_traits<_InputIterator1>::value_type>)
5186 __glibcxx_requires_sorted_set_pred(__first1, __last1, __first2, __comp);
5187 __glibcxx_requires_sorted_set_pred(__first2, __last2, __first1, __comp);
5188 __glibcxx_requires_irreflexive_pred2(__first1, __last1, __comp);
5189 __glibcxx_requires_irreflexive_pred2(__first2, __last2, __comp);
5191 return _GLIBCXX_STD_A::__set_union(__first1, __last1,
5192 __first2, __last2, __result,
5193 __gnu_cxx::__ops::__iter_comp_iter(__comp));
5196 template<typename _InputIterator1, typename _InputIterator2,
5197 typename _OutputIterator,
5198 typename _Compare>
5199 _OutputIterator
5200 __set_intersection(_InputIterator1 __first1, _InputIterator1 __last1,
5201 _InputIterator2 __first2, _InputIterator2 __last2,
5202 _OutputIterator __result, _Compare __comp)
5204 while (__first1 != __last1 && __first2 != __last2)
5205 if (__comp(__first1, __first2))
5206 ++__first1;
5207 else if (__comp(__first2, __first1))
5208 ++__first2;
5209 else
5211 *__result = *__first1;
5212 ++__first1;
5213 ++__first2;
5214 ++__result;
5216 return __result;
5220 * @brief Return the intersection of two sorted ranges.
5221 * @ingroup set_algorithms
5222 * @param __first1 Start of first range.
5223 * @param __last1 End of first range.
5224 * @param __first2 Start of second range.
5225 * @param __last2 End of second range.
5226 * @return End of the output range.
5227 * @ingroup set_algorithms
5229 * This operation iterates over both ranges, copying elements present in
5230 * both ranges in order to the output range. Iterators increment for each
5231 * range. When the current element of one range is less than the other,
5232 * that iterator advances. If an element is contained in both ranges, the
5233 * element from the first range is copied and both ranges advance. The
5234 * output range may not overlap either input range.
5236 template<typename _InputIterator1, typename _InputIterator2,
5237 typename _OutputIterator>
5238 inline _OutputIterator
5239 set_intersection(_InputIterator1 __first1, _InputIterator1 __last1,
5240 _InputIterator2 __first2, _InputIterator2 __last2,
5241 _OutputIterator __result)
5243 // concept requirements
5244 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
5245 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
5246 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
5247 typename iterator_traits<_InputIterator1>::value_type>)
5248 __glibcxx_function_requires(_LessThanOpConcept<
5249 typename iterator_traits<_InputIterator1>::value_type,
5250 typename iterator_traits<_InputIterator2>::value_type>)
5251 __glibcxx_function_requires(_LessThanOpConcept<
5252 typename iterator_traits<_InputIterator2>::value_type,
5253 typename iterator_traits<_InputIterator1>::value_type>)
5254 __glibcxx_requires_sorted_set(__first1, __last1, __first2);
5255 __glibcxx_requires_sorted_set(__first2, __last2, __first1);
5256 __glibcxx_requires_irreflexive2(__first1, __last1);
5257 __glibcxx_requires_irreflexive2(__first2, __last2);
5259 return _GLIBCXX_STD_A::__set_intersection(__first1, __last1,
5260 __first2, __last2, __result,
5261 __gnu_cxx::__ops::__iter_less_iter());
5265 * @brief Return the intersection of two sorted ranges using comparison
5266 * functor.
5267 * @ingroup set_algorithms
5268 * @param __first1 Start of first range.
5269 * @param __last1 End of first range.
5270 * @param __first2 Start of second range.
5271 * @param __last2 End of second range.
5272 * @param __comp The comparison functor.
5273 * @return End of the output range.
5274 * @ingroup set_algorithms
5276 * This operation iterates over both ranges, copying elements present in
5277 * both ranges in order to the output range. Iterators increment for each
5278 * range. When the current element of one range is less than the other
5279 * according to @p __comp, that iterator advances. If an element is
5280 * contained in both ranges according to @p __comp, the element from the
5281 * first range is copied and both ranges advance. The output range may not
5282 * overlap either input range.
5284 template<typename _InputIterator1, typename _InputIterator2,
5285 typename _OutputIterator, typename _Compare>
5286 inline _OutputIterator
5287 set_intersection(_InputIterator1 __first1, _InputIterator1 __last1,
5288 _InputIterator2 __first2, _InputIterator2 __last2,
5289 _OutputIterator __result, _Compare __comp)
5291 // concept requirements
5292 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
5293 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
5294 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
5295 typename iterator_traits<_InputIterator1>::value_type>)
5296 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
5297 typename iterator_traits<_InputIterator1>::value_type,
5298 typename iterator_traits<_InputIterator2>::value_type>)
5299 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
5300 typename iterator_traits<_InputIterator2>::value_type,
5301 typename iterator_traits<_InputIterator1>::value_type>)
5302 __glibcxx_requires_sorted_set_pred(__first1, __last1, __first2, __comp);
5303 __glibcxx_requires_sorted_set_pred(__first2, __last2, __first1, __comp);
5304 __glibcxx_requires_irreflexive_pred2(__first1, __last1, __comp);
5305 __glibcxx_requires_irreflexive_pred2(__first2, __last2, __comp);
5307 return _GLIBCXX_STD_A::__set_intersection(__first1, __last1,
5308 __first2, __last2, __result,
5309 __gnu_cxx::__ops::__iter_comp_iter(__comp));
5312 template<typename _InputIterator1, typename _InputIterator2,
5313 typename _OutputIterator,
5314 typename _Compare>
5315 _OutputIterator
5316 __set_difference(_InputIterator1 __first1, _InputIterator1 __last1,
5317 _InputIterator2 __first2, _InputIterator2 __last2,
5318 _OutputIterator __result, _Compare __comp)
5320 while (__first1 != __last1 && __first2 != __last2)
5321 if (__comp(__first1, __first2))
5323 *__result = *__first1;
5324 ++__first1;
5325 ++__result;
5327 else if (__comp(__first2, __first1))
5328 ++__first2;
5329 else
5331 ++__first1;
5332 ++__first2;
5334 return std::copy(__first1, __last1, __result);
5338 * @brief Return the difference of two sorted ranges.
5339 * @ingroup set_algorithms
5340 * @param __first1 Start of first range.
5341 * @param __last1 End of first range.
5342 * @param __first2 Start of second range.
5343 * @param __last2 End of second range.
5344 * @return End of the output range.
5345 * @ingroup set_algorithms
5347 * This operation iterates over both ranges, copying elements present in
5348 * the first range but not the second in order to the output range.
5349 * Iterators increment for each range. When the current element of the
5350 * first range is less than the second, that element is copied and the
5351 * iterator advances. If the current element of the second range is less,
5352 * the iterator advances, but no element is copied. If an element is
5353 * contained in both ranges, no elements are copied and both ranges
5354 * advance. The output range may not overlap either input range.
5356 template<typename _InputIterator1, typename _InputIterator2,
5357 typename _OutputIterator>
5358 inline _OutputIterator
5359 set_difference(_InputIterator1 __first1, _InputIterator1 __last1,
5360 _InputIterator2 __first2, _InputIterator2 __last2,
5361 _OutputIterator __result)
5363 // concept requirements
5364 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
5365 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
5366 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
5367 typename iterator_traits<_InputIterator1>::value_type>)
5368 __glibcxx_function_requires(_LessThanOpConcept<
5369 typename iterator_traits<_InputIterator1>::value_type,
5370 typename iterator_traits<_InputIterator2>::value_type>)
5371 __glibcxx_function_requires(_LessThanOpConcept<
5372 typename iterator_traits<_InputIterator2>::value_type,
5373 typename iterator_traits<_InputIterator1>::value_type>)
5374 __glibcxx_requires_sorted_set(__first1, __last1, __first2);
5375 __glibcxx_requires_sorted_set(__first2, __last2, __first1);
5376 __glibcxx_requires_irreflexive2(__first1, __last1);
5377 __glibcxx_requires_irreflexive2(__first2, __last2);
5379 return _GLIBCXX_STD_A::__set_difference(__first1, __last1,
5380 __first2, __last2, __result,
5381 __gnu_cxx::__ops::__iter_less_iter());
5385 * @brief Return the difference of two sorted ranges using comparison
5386 * functor.
5387 * @ingroup set_algorithms
5388 * @param __first1 Start of first range.
5389 * @param __last1 End of first range.
5390 * @param __first2 Start of second range.
5391 * @param __last2 End of second range.
5392 * @param __comp The comparison functor.
5393 * @return End of the output range.
5394 * @ingroup set_algorithms
5396 * This operation iterates over both ranges, copying elements present in
5397 * the first range but not the second in order to the output range.
5398 * Iterators increment for each range. When the current element of the
5399 * first range is less than the second according to @p __comp, that element
5400 * is copied and the iterator advances. If the current element of the
5401 * second range is less, no element is copied and the iterator advances.
5402 * If an element is contained in both ranges according to @p __comp, no
5403 * elements are copied and both ranges advance. The output range may not
5404 * overlap either input range.
5406 template<typename _InputIterator1, typename _InputIterator2,
5407 typename _OutputIterator, typename _Compare>
5408 inline _OutputIterator
5409 set_difference(_InputIterator1 __first1, _InputIterator1 __last1,
5410 _InputIterator2 __first2, _InputIterator2 __last2,
5411 _OutputIterator __result, _Compare __comp)
5413 // concept requirements
5414 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
5415 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
5416 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
5417 typename iterator_traits<_InputIterator1>::value_type>)
5418 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
5419 typename iterator_traits<_InputIterator1>::value_type,
5420 typename iterator_traits<_InputIterator2>::value_type>)
5421 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
5422 typename iterator_traits<_InputIterator2>::value_type,
5423 typename iterator_traits<_InputIterator1>::value_type>)
5424 __glibcxx_requires_sorted_set_pred(__first1, __last1, __first2, __comp);
5425 __glibcxx_requires_sorted_set_pred(__first2, __last2, __first1, __comp);
5426 __glibcxx_requires_irreflexive_pred2(__first1, __last1, __comp);
5427 __glibcxx_requires_irreflexive_pred2(__first2, __last2, __comp);
5429 return _GLIBCXX_STD_A::__set_difference(__first1, __last1,
5430 __first2, __last2, __result,
5431 __gnu_cxx::__ops::__iter_comp_iter(__comp));
5434 template<typename _InputIterator1, typename _InputIterator2,
5435 typename _OutputIterator,
5436 typename _Compare>
5437 _OutputIterator
5438 __set_symmetric_difference(_InputIterator1 __first1,
5439 _InputIterator1 __last1,
5440 _InputIterator2 __first2,
5441 _InputIterator2 __last2,
5442 _OutputIterator __result,
5443 _Compare __comp)
5445 while (__first1 != __last1 && __first2 != __last2)
5446 if (__comp(__first1, __first2))
5448 *__result = *__first1;
5449 ++__first1;
5450 ++__result;
5452 else if (__comp(__first2, __first1))
5454 *__result = *__first2;
5455 ++__first2;
5456 ++__result;
5458 else
5460 ++__first1;
5461 ++__first2;
5463 return std::copy(__first2, __last2,
5464 std::copy(__first1, __last1, __result));
5468 * @brief Return the symmetric difference of two sorted ranges.
5469 * @ingroup set_algorithms
5470 * @param __first1 Start of first range.
5471 * @param __last1 End of first range.
5472 * @param __first2 Start of second range.
5473 * @param __last2 End of second range.
5474 * @return End of the output range.
5475 * @ingroup set_algorithms
5477 * This operation iterates over both ranges, copying elements present in
5478 * one range but not the other in order to the output range. Iterators
5479 * increment for each range. When the current element of one range is less
5480 * than the other, that element is copied and the iterator advances. If an
5481 * element is contained in both ranges, no elements are copied and both
5482 * ranges advance. The output range may not overlap either input range.
5484 template<typename _InputIterator1, typename _InputIterator2,
5485 typename _OutputIterator>
5486 inline _OutputIterator
5487 set_symmetric_difference(_InputIterator1 __first1, _InputIterator1 __last1,
5488 _InputIterator2 __first2, _InputIterator2 __last2,
5489 _OutputIterator __result)
5491 // concept requirements
5492 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
5493 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
5494 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
5495 typename iterator_traits<_InputIterator1>::value_type>)
5496 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
5497 typename iterator_traits<_InputIterator2>::value_type>)
5498 __glibcxx_function_requires(_LessThanOpConcept<
5499 typename iterator_traits<_InputIterator1>::value_type,
5500 typename iterator_traits<_InputIterator2>::value_type>)
5501 __glibcxx_function_requires(_LessThanOpConcept<
5502 typename iterator_traits<_InputIterator2>::value_type,
5503 typename iterator_traits<_InputIterator1>::value_type>)
5504 __glibcxx_requires_sorted_set(__first1, __last1, __first2);
5505 __glibcxx_requires_sorted_set(__first2, __last2, __first1);
5506 __glibcxx_requires_irreflexive2(__first1, __last1);
5507 __glibcxx_requires_irreflexive2(__first2, __last2);
5509 return _GLIBCXX_STD_A::__set_symmetric_difference(__first1, __last1,
5510 __first2, __last2, __result,
5511 __gnu_cxx::__ops::__iter_less_iter());
5515 * @brief Return the symmetric difference of two sorted ranges using
5516 * comparison functor.
5517 * @ingroup set_algorithms
5518 * @param __first1 Start of first range.
5519 * @param __last1 End of first range.
5520 * @param __first2 Start of second range.
5521 * @param __last2 End of second range.
5522 * @param __comp The comparison functor.
5523 * @return End of the output range.
5524 * @ingroup set_algorithms
5526 * This operation iterates over both ranges, copying elements present in
5527 * one range but not the other in order to the output range. Iterators
5528 * increment for each range. When the current element of one range is less
5529 * than the other according to @p comp, that element is copied and the
5530 * iterator advances. If an element is contained in both ranges according
5531 * to @p __comp, no elements are copied and both ranges advance. The output
5532 * range may not overlap either input range.
5534 template<typename _InputIterator1, typename _InputIterator2,
5535 typename _OutputIterator, typename _Compare>
5536 inline _OutputIterator
5537 set_symmetric_difference(_InputIterator1 __first1, _InputIterator1 __last1,
5538 _InputIterator2 __first2, _InputIterator2 __last2,
5539 _OutputIterator __result,
5540 _Compare __comp)
5542 // concept requirements
5543 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
5544 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
5545 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
5546 typename iterator_traits<_InputIterator1>::value_type>)
5547 __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
5548 typename iterator_traits<_InputIterator2>::value_type>)
5549 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
5550 typename iterator_traits<_InputIterator1>::value_type,
5551 typename iterator_traits<_InputIterator2>::value_type>)
5552 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
5553 typename iterator_traits<_InputIterator2>::value_type,
5554 typename iterator_traits<_InputIterator1>::value_type>)
5555 __glibcxx_requires_sorted_set_pred(__first1, __last1, __first2, __comp);
5556 __glibcxx_requires_sorted_set_pred(__first2, __last2, __first1, __comp);
5557 __glibcxx_requires_irreflexive_pred2(__first1, __last1, __comp);
5558 __glibcxx_requires_irreflexive_pred2(__first2, __last2, __comp);
5560 return _GLIBCXX_STD_A::__set_symmetric_difference(__first1, __last1,
5561 __first2, __last2, __result,
5562 __gnu_cxx::__ops::__iter_comp_iter(__comp));
5565 template<typename _ForwardIterator, typename _Compare>
5566 _GLIBCXX14_CONSTEXPR
5567 _ForwardIterator
5568 __min_element(_ForwardIterator __first, _ForwardIterator __last,
5569 _Compare __comp)
5571 if (__first == __last)
5572 return __first;
5573 _ForwardIterator __result = __first;
5574 while (++__first != __last)
5575 if (__comp(__first, __result))
5576 __result = __first;
5577 return __result;
5581 * @brief Return the minimum element in a range.
5582 * @ingroup sorting_algorithms
5583 * @param __first Start of range.
5584 * @param __last End of range.
5585 * @return Iterator referencing the first instance of the smallest value.
5587 template<typename _ForwardIterator>
5588 _GLIBCXX14_CONSTEXPR
5589 _ForwardIterator
5590 inline min_element(_ForwardIterator __first, _ForwardIterator __last)
5592 // concept requirements
5593 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
5594 __glibcxx_function_requires(_LessThanComparableConcept<
5595 typename iterator_traits<_ForwardIterator>::value_type>)
5596 __glibcxx_requires_valid_range(__first, __last);
5597 __glibcxx_requires_irreflexive(__first, __last);
5599 return _GLIBCXX_STD_A::__min_element(__first, __last,
5600 __gnu_cxx::__ops::__iter_less_iter());
5604 * @brief Return the minimum element in a range using comparison functor.
5605 * @ingroup sorting_algorithms
5606 * @param __first Start of range.
5607 * @param __last End of range.
5608 * @param __comp Comparison functor.
5609 * @return Iterator referencing the first instance of the smallest value
5610 * according to __comp.
5612 template<typename _ForwardIterator, typename _Compare>
5613 _GLIBCXX14_CONSTEXPR
5614 inline _ForwardIterator
5615 min_element(_ForwardIterator __first, _ForwardIterator __last,
5616 _Compare __comp)
5618 // concept requirements
5619 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
5620 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
5621 typename iterator_traits<_ForwardIterator>::value_type,
5622 typename iterator_traits<_ForwardIterator>::value_type>)
5623 __glibcxx_requires_valid_range(__first, __last);
5624 __glibcxx_requires_irreflexive_pred(__first, __last, __comp);
5626 return _GLIBCXX_STD_A::__min_element(__first, __last,
5627 __gnu_cxx::__ops::__iter_comp_iter(__comp));
5630 template<typename _ForwardIterator, typename _Compare>
5631 _GLIBCXX14_CONSTEXPR
5632 _ForwardIterator
5633 __max_element(_ForwardIterator __first, _ForwardIterator __last,
5634 _Compare __comp)
5636 if (__first == __last) return __first;
5637 _ForwardIterator __result = __first;
5638 while (++__first != __last)
5639 if (__comp(__result, __first))
5640 __result = __first;
5641 return __result;
5645 * @brief Return the maximum element in a range.
5646 * @ingroup sorting_algorithms
5647 * @param __first Start of range.
5648 * @param __last End of range.
5649 * @return Iterator referencing the first instance of the largest value.
5651 template<typename _ForwardIterator>
5652 _GLIBCXX14_CONSTEXPR
5653 inline _ForwardIterator
5654 max_element(_ForwardIterator __first, _ForwardIterator __last)
5656 // concept requirements
5657 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
5658 __glibcxx_function_requires(_LessThanComparableConcept<
5659 typename iterator_traits<_ForwardIterator>::value_type>)
5660 __glibcxx_requires_valid_range(__first, __last);
5661 __glibcxx_requires_irreflexive(__first, __last);
5663 return _GLIBCXX_STD_A::__max_element(__first, __last,
5664 __gnu_cxx::__ops::__iter_less_iter());
5668 * @brief Return the maximum element in a range using comparison functor.
5669 * @ingroup sorting_algorithms
5670 * @param __first Start of range.
5671 * @param __last End of range.
5672 * @param __comp Comparison functor.
5673 * @return Iterator referencing the first instance of the largest value
5674 * according to __comp.
5676 template<typename _ForwardIterator, typename _Compare>
5677 _GLIBCXX14_CONSTEXPR
5678 inline _ForwardIterator
5679 max_element(_ForwardIterator __first, _ForwardIterator __last,
5680 _Compare __comp)
5682 // concept requirements
5683 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
5684 __glibcxx_function_requires(_BinaryPredicateConcept<_Compare,
5685 typename iterator_traits<_ForwardIterator>::value_type,
5686 typename iterator_traits<_ForwardIterator>::value_type>)
5687 __glibcxx_requires_valid_range(__first, __last);
5688 __glibcxx_requires_irreflexive_pred(__first, __last, __comp);
5690 return _GLIBCXX_STD_A::__max_element(__first, __last,
5691 __gnu_cxx::__ops::__iter_comp_iter(__comp));
5694 #if __cplusplus >= 201402L
5695 /// Reservoir sampling algorithm.
5696 template<typename _InputIterator, typename _RandomAccessIterator,
5697 typename _Size, typename _UniformRandomBitGenerator>
5698 _RandomAccessIterator
5699 __sample(_InputIterator __first, _InputIterator __last, input_iterator_tag,
5700 _RandomAccessIterator __out, random_access_iterator_tag,
5701 _Size __n, _UniformRandomBitGenerator&& __g)
5703 using __distrib_type = uniform_int_distribution<_Size>;
5704 using __param_type = typename __distrib_type::param_type;
5705 __distrib_type __d{};
5706 _Size __sample_sz = 0;
5707 while (__first != __last && __sample_sz != __n)
5709 __out[__sample_sz++] = *__first;
5710 ++__first;
5712 for (auto __pop_sz = __sample_sz; __first != __last;
5713 ++__first, (void) ++__pop_sz)
5715 const auto __k = __d(__g, __param_type{0, __pop_sz});
5716 if (__k < __n)
5717 __out[__k] = *__first;
5719 return __out + __sample_sz;
5722 /// Selection sampling algorithm.
5723 template<typename _ForwardIterator, typename _OutputIterator, typename _Cat,
5724 typename _Size, typename _UniformRandomBitGenerator>
5725 _OutputIterator
5726 __sample(_ForwardIterator __first, _ForwardIterator __last,
5727 forward_iterator_tag,
5728 _OutputIterator __out, _Cat,
5729 _Size __n, _UniformRandomBitGenerator&& __g)
5731 using __distrib_type = uniform_int_distribution<_Size>;
5732 using __param_type = typename __distrib_type::param_type;
5733 using _USize = make_unsigned_t<_Size>;
5734 using _Gen = remove_reference_t<_UniformRandomBitGenerator>;
5735 using __uc_type = common_type_t<typename _Gen::result_type, _USize>;
5737 __distrib_type __d{};
5738 _Size __unsampled_sz = std::distance(__first, __last);
5739 __n = std::min(__n, __unsampled_sz);
5741 // If possible, we use __gen_two_uniform_ints to efficiently produce
5742 // two random numbers using a single distribution invocation:
5744 const __uc_type __urngrange = __g.max() - __g.min();
5745 if (__urngrange / __uc_type(__unsampled_sz) >= __uc_type(__unsampled_sz))
5746 // I.e. (__urngrange >= __unsampled_sz * __unsampled_sz) but without
5747 // wrapping issues.
5749 while (__n != 0 && __unsampled_sz >= 2)
5751 const pair<_Size, _Size> p =
5752 __gen_two_uniform_ints(__unsampled_sz, __unsampled_sz - 1, __g);
5754 --__unsampled_sz;
5755 if (p.first < __n)
5757 *__out++ = *__first;
5758 --__n;
5761 ++__first;
5763 if (__n == 0) break;
5765 --__unsampled_sz;
5766 if (p.second < __n)
5768 *__out++ = *__first;
5769 --__n;
5772 ++__first;
5776 // The loop above is otherwise equivalent to this one-at-a-time version:
5778 for (; __n != 0; ++__first)
5779 if (__d(__g, __param_type{0, --__unsampled_sz}) < __n)
5781 *__out++ = *__first;
5782 --__n;
5784 return __out;
5787 #if __cplusplus > 201402L
5788 #define __cpp_lib_sample 201603
5789 /// Take a random sample from a population.
5790 template<typename _PopulationIterator, typename _SampleIterator,
5791 typename _Distance, typename _UniformRandomBitGenerator>
5792 _SampleIterator
5793 sample(_PopulationIterator __first, _PopulationIterator __last,
5794 _SampleIterator __out, _Distance __n,
5795 _UniformRandomBitGenerator&& __g)
5797 using __pop_cat = typename
5798 std::iterator_traits<_PopulationIterator>::iterator_category;
5799 using __samp_cat = typename
5800 std::iterator_traits<_SampleIterator>::iterator_category;
5802 static_assert(
5803 __or_<is_convertible<__pop_cat, forward_iterator_tag>,
5804 is_convertible<__samp_cat, random_access_iterator_tag>>::value,
5805 "output range must use a RandomAccessIterator when input range"
5806 " does not meet the ForwardIterator requirements");
5808 static_assert(is_integral<_Distance>::value,
5809 "sample size must be an integer type");
5811 typename iterator_traits<_PopulationIterator>::difference_type __d = __n;
5812 return std::__sample(__first, __last, __pop_cat{}, __out, __samp_cat{},
5813 __d, std::forward<_UniformRandomBitGenerator>(__g));
5815 #endif // C++17
5816 #endif // C++14
5818 _GLIBCXX_END_NAMESPACE_ALGO
5819 } // namespace std
5821 #endif /* _STL_ALGO_H */