1 // Algorithm implementation -*- C++ -*-
3 // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 // Free Software Foundation, Inc.
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // Under Section 7 of GPL version 3, you are granted additional
18 // permissions described in the GCC Runtime Library Exception, version
19 // 3.1, as published by the Free Software Foundation.
21 // You should have received a copy of the GNU General Public License and
22 // a copy of the GCC Runtime Library Exception along with this program;
23 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 // <http://www.gnu.org/licenses/>.
29 * Hewlett-Packard Company
31 * Permission to use, copy, modify, distribute and sell this software
32 * and its documentation for any purpose is hereby granted without fee,
33 * provided that the above copyright notice appear in all copies and
34 * that both that copyright notice and this permission notice appear
35 * in supporting documentation. Hewlett-Packard Company makes no
36 * representations about the suitability of this software for any
37 * purpose. It is provided "as is" without express or implied warranty.
41 * Silicon Graphics Computer Systems, Inc.
43 * Permission to use, copy, modify, distribute and sell this software
44 * and its documentation for any purpose is hereby granted without fee,
45 * provided that the above copyright notice appear in all copies and
46 * that both that copyright notice and this permission notice appear
47 * in supporting documentation. Silicon Graphics makes no
48 * representations about the suitability of this software for any
49 * purpose. It is provided "as is" without express or implied warranty.
52 /** @file bits/stl_algo.h
53 * This is an internal header file, included by other library headers.
54 * Do not attempt to use it directly. @headername{algorithm}
60 #include <cstdlib> // for rand
61 #include <bits/algorithmfwd.h>
62 #include <bits/stl_heap.h>
63 #include <bits/stl_tempbuf.h> // for _Temporary_buffer
65 #ifdef __GXX_EXPERIMENTAL_CXX0X__
66 #include <random> // for std::uniform_int_distribution
69 // See concept_check.h for the __glibcxx_*_requires macros.
71 _GLIBCXX_BEGIN_NAMESPACE(std
)
73 /// Swaps the median value of *__a, *__b and *__c to *__a
74 template<typename _Iterator
>
76 __move_median_first(_Iterator __a
, _Iterator __b
, _Iterator __c
)
78 // concept requirements
79 __glibcxx_function_requires(_LessThanComparableConcept
<
80 typename iterator_traits
<_Iterator
>::value_type
>)
85 std::iter_swap(__a
, __b
);
87 std::iter_swap(__a
, __c
);
92 std::iter_swap(__a
, __c
);
94 std::iter_swap(__a
, __b
);
97 /// Swaps the median value of *__a, *__b and *__c under __comp to *__a
98 template<typename _Iterator
, typename _Compare
>
100 __move_median_first(_Iterator __a
, _Iterator __b
, _Iterator __c
,
103 // concept requirements
104 __glibcxx_function_requires(_BinaryFunctionConcept
<_Compare
, bool,
105 typename iterator_traits
<_Iterator
>::value_type
,
106 typename iterator_traits
<_Iterator
>::value_type
>)
108 if (__comp(*__a
, *__b
))
110 if (__comp(*__b
, *__c
))
111 std::iter_swap(__a
, __b
);
112 else if (__comp(*__a
, *__c
))
113 std::iter_swap(__a
, __c
);
115 else if (__comp(*__a
, *__c
))
117 else if (__comp(*__b
, *__c
))
118 std::iter_swap(__a
, __c
);
120 std::iter_swap(__a
, __b
);
125 /// This is an overload used by find() for the Input Iterator case.
126 template<typename _InputIterator
, typename _Tp
>
127 inline _InputIterator
128 __find(_InputIterator __first
, _InputIterator __last
,
129 const _Tp
& __val
, input_iterator_tag
)
131 while (__first
!= __last
&& !(*__first
== __val
))
136 /// This is an overload used by find_if() for the Input Iterator case.
137 template<typename _InputIterator
, typename _Predicate
>
138 inline _InputIterator
139 __find_if(_InputIterator __first
, _InputIterator __last
,
140 _Predicate __pred
, input_iterator_tag
)
142 while (__first
!= __last
&& !bool(__pred(*__first
)))
147 /// This is an overload used by find() for the RAI case.
148 template<typename _RandomAccessIterator
, typename _Tp
>
149 _RandomAccessIterator
150 __find(_RandomAccessIterator __first
, _RandomAccessIterator __last
,
151 const _Tp
& __val
, random_access_iterator_tag
)
153 typename iterator_traits
<_RandomAccessIterator
>::difference_type
154 __trip_count
= (__last
- __first
) >> 2;
156 for (; __trip_count
> 0; --__trip_count
)
158 if (*__first
== __val
)
162 if (*__first
== __val
)
166 if (*__first
== __val
)
170 if (*__first
== __val
)
175 switch (__last
- __first
)
178 if (*__first
== __val
)
182 if (*__first
== __val
)
186 if (*__first
== __val
)
195 /// This is an overload used by find_if() for the RAI case.
196 template<typename _RandomAccessIterator
, typename _Predicate
>
197 _RandomAccessIterator
198 __find_if(_RandomAccessIterator __first
, _RandomAccessIterator __last
,
199 _Predicate __pred
, random_access_iterator_tag
)
201 typename iterator_traits
<_RandomAccessIterator
>::difference_type
202 __trip_count
= (__last
- __first
) >> 2;
204 for (; __trip_count
> 0; --__trip_count
)
206 if (__pred(*__first
))
210 if (__pred(*__first
))
214 if (__pred(*__first
))
218 if (__pred(*__first
))
223 switch (__last
- __first
)
226 if (__pred(*__first
))
230 if (__pred(*__first
))
234 if (__pred(*__first
))
243 #ifdef __GXX_EXPERIMENTAL_CXX0X__
244 /// This is an overload used by find_if_not() for the Input Iterator case.
245 template<typename _InputIterator
, typename _Predicate
>
246 inline _InputIterator
247 __find_if_not(_InputIterator __first
, _InputIterator __last
,
248 _Predicate __pred
, input_iterator_tag
)
250 while (__first
!= __last
&& bool(__pred(*__first
)))
255 /// This is an overload used by find_if_not() for the RAI case.
256 template<typename _RandomAccessIterator
, typename _Predicate
>
257 _RandomAccessIterator
258 __find_if_not(_RandomAccessIterator __first
, _RandomAccessIterator __last
,
259 _Predicate __pred
, random_access_iterator_tag
)
261 typename iterator_traits
<_RandomAccessIterator
>::difference_type
262 __trip_count
= (__last
- __first
) >> 2;
264 for (; __trip_count
> 0; --__trip_count
)
266 if (!bool(__pred(*__first
)))
270 if (!bool(__pred(*__first
)))
274 if (!bool(__pred(*__first
)))
278 if (!bool(__pred(*__first
)))
283 switch (__last
- __first
)
286 if (!bool(__pred(*__first
)))
290 if (!bool(__pred(*__first
)))
294 if (!bool(__pred(*__first
)))
306 // set_symmetric_difference
318 * This is an uglified
319 * search_n(_ForwardIterator, _ForwardIterator, _Integer, const _Tp&)
320 * overloaded for forward iterators.
322 template<typename _ForwardIterator
, typename _Integer
, typename _Tp
>
324 __search_n(_ForwardIterator __first
, _ForwardIterator __last
,
325 _Integer __count
, const _Tp
& __val
,
326 std::forward_iterator_tag
)
328 __first
= _GLIBCXX_STD_P::find(__first
, __last
, __val
);
329 while (__first
!= __last
)
331 typename iterator_traits
<_ForwardIterator
>::difference_type
333 _ForwardIterator __i
= __first
;
335 while (__i
!= __last
&& __n
!= 1 && *__i
== __val
)
344 __first
= _GLIBCXX_STD_P::find(++__i
, __last
, __val
);
350 * This is an uglified
351 * search_n(_ForwardIterator, _ForwardIterator, _Integer, const _Tp&)
352 * overloaded for random access iterators.
354 template<typename _RandomAccessIter
, typename _Integer
, typename _Tp
>
356 __search_n(_RandomAccessIter __first
, _RandomAccessIter __last
,
357 _Integer __count
, const _Tp
& __val
,
358 std::random_access_iterator_tag
)
361 typedef typename
std::iterator_traits
<_RandomAccessIter
>::difference_type
364 _DistanceType __tailSize
= __last
- __first
;
365 const _DistanceType __pattSize
= __count
;
367 if (__tailSize
< __pattSize
)
370 const _DistanceType __skipOffset
= __pattSize
- 1;
371 _RandomAccessIter __lookAhead
= __first
+ __skipOffset
;
372 __tailSize
-= __pattSize
;
374 while (1) // the main loop...
376 // __lookAhead here is always pointing to the last element of next
378 while (!(*__lookAhead
== __val
)) // the skip loop...
380 if (__tailSize
< __pattSize
)
381 return __last
; // Failure
382 __lookAhead
+= __pattSize
;
383 __tailSize
-= __pattSize
;
385 _DistanceType __remainder
= __skipOffset
;
386 for (_RandomAccessIter __backTrack
= __lookAhead
- 1;
387 *__backTrack
== __val
; --__backTrack
)
389 if (--__remainder
== 0)
390 return (__lookAhead
- __skipOffset
); // Success
392 if (__remainder
> __tailSize
)
393 return __last
; // Failure
394 __lookAhead
+= __remainder
;
395 __tailSize
-= __remainder
;
402 * This is an uglified
403 * search_n(_ForwardIterator, _ForwardIterator, _Integer, const _Tp&,
405 * overloaded for forward iterators.
407 template<typename _ForwardIterator
, typename _Integer
, typename _Tp
,
408 typename _BinaryPredicate
>
410 __search_n(_ForwardIterator __first
, _ForwardIterator __last
,
411 _Integer __count
, const _Tp
& __val
,
412 _BinaryPredicate __binary_pred
, std::forward_iterator_tag
)
414 while (__first
!= __last
&& !bool(__binary_pred(*__first
, __val
)))
417 while (__first
!= __last
)
419 typename iterator_traits
<_ForwardIterator
>::difference_type
421 _ForwardIterator __i
= __first
;
423 while (__i
!= __last
&& __n
!= 1 && bool(__binary_pred(*__i
, __val
)))
433 while (__first
!= __last
434 && !bool(__binary_pred(*__first
, __val
)))
441 * This is an uglified
442 * search_n(_ForwardIterator, _ForwardIterator, _Integer, const _Tp&,
444 * overloaded for random access iterators.
446 template<typename _RandomAccessIter
, typename _Integer
, typename _Tp
,
447 typename _BinaryPredicate
>
449 __search_n(_RandomAccessIter __first
, _RandomAccessIter __last
,
450 _Integer __count
, const _Tp
& __val
,
451 _BinaryPredicate __binary_pred
, std::random_access_iterator_tag
)
454 typedef typename
std::iterator_traits
<_RandomAccessIter
>::difference_type
457 _DistanceType __tailSize
= __last
- __first
;
458 const _DistanceType __pattSize
= __count
;
460 if (__tailSize
< __pattSize
)
463 const _DistanceType __skipOffset
= __pattSize
- 1;
464 _RandomAccessIter __lookAhead
= __first
+ __skipOffset
;
465 __tailSize
-= __pattSize
;
467 while (1) // the main loop...
469 // __lookAhead here is always pointing to the last element of next
471 while (!bool(__binary_pred(*__lookAhead
, __val
))) // the skip loop...
473 if (__tailSize
< __pattSize
)
474 return __last
; // Failure
475 __lookAhead
+= __pattSize
;
476 __tailSize
-= __pattSize
;
478 _DistanceType __remainder
= __skipOffset
;
479 for (_RandomAccessIter __backTrack
= __lookAhead
- 1;
480 __binary_pred(*__backTrack
, __val
); --__backTrack
)
482 if (--__remainder
== 0)
483 return (__lookAhead
- __skipOffset
); // Success
485 if (__remainder
> __tailSize
)
486 return __last
; // Failure
487 __lookAhead
+= __remainder
;
488 __tailSize
-= __remainder
;
492 // find_end for forward iterators.
493 template<typename _ForwardIterator1
, typename _ForwardIterator2
>
495 __find_end(_ForwardIterator1 __first1
, _ForwardIterator1 __last1
,
496 _ForwardIterator2 __first2
, _ForwardIterator2 __last2
,
497 forward_iterator_tag
, forward_iterator_tag
)
499 if (__first2
== __last2
)
503 _ForwardIterator1 __result
= __last1
;
506 _ForwardIterator1 __new_result
507 = _GLIBCXX_STD_P::search(__first1
, __last1
, __first2
, __last2
);
508 if (__new_result
== __last1
)
512 __result
= __new_result
;
513 __first1
= __new_result
;
520 template<typename _ForwardIterator1
, typename _ForwardIterator2
,
521 typename _BinaryPredicate
>
523 __find_end(_ForwardIterator1 __first1
, _ForwardIterator1 __last1
,
524 _ForwardIterator2 __first2
, _ForwardIterator2 __last2
,
525 forward_iterator_tag
, forward_iterator_tag
,
526 _BinaryPredicate __comp
)
528 if (__first2
== __last2
)
532 _ForwardIterator1 __result
= __last1
;
535 _ForwardIterator1 __new_result
536 = _GLIBCXX_STD_P::search(__first1
, __last1
, __first2
,
538 if (__new_result
== __last1
)
542 __result
= __new_result
;
543 __first1
= __new_result
;
550 // find_end for bidirectional iterators (much faster).
551 template<typename _BidirectionalIterator1
, typename _BidirectionalIterator2
>
552 _BidirectionalIterator1
553 __find_end(_BidirectionalIterator1 __first1
,
554 _BidirectionalIterator1 __last1
,
555 _BidirectionalIterator2 __first2
,
556 _BidirectionalIterator2 __last2
,
557 bidirectional_iterator_tag
, bidirectional_iterator_tag
)
559 // concept requirements
560 __glibcxx_function_requires(_BidirectionalIteratorConcept
<
561 _BidirectionalIterator1
>)
562 __glibcxx_function_requires(_BidirectionalIteratorConcept
<
563 _BidirectionalIterator2
>)
565 typedef reverse_iterator
<_BidirectionalIterator1
> _RevIterator1
;
566 typedef reverse_iterator
<_BidirectionalIterator2
> _RevIterator2
;
568 _RevIterator1
__rlast1(__first1
);
569 _RevIterator2
__rlast2(__first2
);
570 _RevIterator1 __rresult
= _GLIBCXX_STD_P::search(_RevIterator1(__last1
),
572 _RevIterator2(__last2
),
575 if (__rresult
== __rlast1
)
579 _BidirectionalIterator1 __result
= __rresult
.base();
580 std::advance(__result
, -std::distance(__first2
, __last2
));
585 template<typename _BidirectionalIterator1
, typename _BidirectionalIterator2
,
586 typename _BinaryPredicate
>
587 _BidirectionalIterator1
588 __find_end(_BidirectionalIterator1 __first1
,
589 _BidirectionalIterator1 __last1
,
590 _BidirectionalIterator2 __first2
,
591 _BidirectionalIterator2 __last2
,
592 bidirectional_iterator_tag
, bidirectional_iterator_tag
,
593 _BinaryPredicate __comp
)
595 // concept requirements
596 __glibcxx_function_requires(_BidirectionalIteratorConcept
<
597 _BidirectionalIterator1
>)
598 __glibcxx_function_requires(_BidirectionalIteratorConcept
<
599 _BidirectionalIterator2
>)
601 typedef reverse_iterator
<_BidirectionalIterator1
> _RevIterator1
;
602 typedef reverse_iterator
<_BidirectionalIterator2
> _RevIterator2
;
604 _RevIterator1
__rlast1(__first1
);
605 _RevIterator2
__rlast2(__first2
);
606 _RevIterator1 __rresult
= std::search(_RevIterator1(__last1
), __rlast1
,
607 _RevIterator2(__last2
), __rlast2
,
610 if (__rresult
== __rlast1
)
614 _BidirectionalIterator1 __result
= __rresult
.base();
615 std::advance(__result
, -std::distance(__first2
, __last2
));
621 * @brief Find last matching subsequence in a sequence.
622 * @ingroup non_mutating_algorithms
623 * @param first1 Start of range to search.
624 * @param last1 End of range to search.
625 * @param first2 Start of sequence to match.
626 * @param last2 End of sequence to match.
627 * @return The last iterator @c i in the range
628 * @p [first1,last1-(last2-first2)) such that @c *(i+N) == @p *(first2+N)
629 * for each @c N in the range @p [0,last2-first2), or @p last1 if no
630 * such iterator exists.
632 * Searches the range @p [first1,last1) for a sub-sequence that compares
633 * equal value-by-value with the sequence given by @p [first2,last2) and
634 * returns an iterator to the first element of the sub-sequence, or
635 * @p last1 if the sub-sequence is not found. The sub-sequence will be the
636 * last such subsequence contained in [first,last1).
638 * Because the sub-sequence must lie completely within the range
639 * @p [first1,last1) it must start at a position less than
640 * @p last1-(last2-first2) where @p last2-first2 is the length of the
642 * This means that the returned iterator @c i will be in the range
643 * @p [first1,last1-(last2-first2))
645 template<typename _ForwardIterator1
, typename _ForwardIterator2
>
646 inline _ForwardIterator1
647 find_end(_ForwardIterator1 __first1
, _ForwardIterator1 __last1
,
648 _ForwardIterator2 __first2
, _ForwardIterator2 __last2
)
650 // concept requirements
651 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator1
>)
652 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator2
>)
653 __glibcxx_function_requires(_EqualOpConcept
<
654 typename iterator_traits
<_ForwardIterator1
>::value_type
,
655 typename iterator_traits
<_ForwardIterator2
>::value_type
>)
656 __glibcxx_requires_valid_range(__first1
, __last1
);
657 __glibcxx_requires_valid_range(__first2
, __last2
);
659 return std::__find_end(__first1
, __last1
, __first2
, __last2
,
660 std::__iterator_category(__first1
),
661 std::__iterator_category(__first2
));
665 * @brief Find last matching subsequence in a sequence using a predicate.
666 * @ingroup non_mutating_algorithms
667 * @param first1 Start of range to search.
668 * @param last1 End of range to search.
669 * @param first2 Start of sequence to match.
670 * @param last2 End of sequence to match.
671 * @param comp The predicate to use.
672 * @return The last iterator @c i in the range
673 * @p [first1,last1-(last2-first2)) such that @c predicate(*(i+N), @p
674 * (first2+N)) is true for each @c N in the range @p [0,last2-first2), or
675 * @p last1 if no such iterator exists.
677 * Searches the range @p [first1,last1) for a sub-sequence that compares
678 * equal value-by-value with the sequence given by @p [first2,last2) using
679 * comp as a predicate and returns an iterator to the first element of the
680 * sub-sequence, or @p last1 if the sub-sequence is not found. The
681 * sub-sequence will be the last such subsequence contained in
684 * Because the sub-sequence must lie completely within the range
685 * @p [first1,last1) it must start at a position less than
686 * @p last1-(last2-first2) where @p last2-first2 is the length of the
688 * This means that the returned iterator @c i will be in the range
689 * @p [first1,last1-(last2-first2))
691 template<typename _ForwardIterator1
, typename _ForwardIterator2
,
692 typename _BinaryPredicate
>
693 inline _ForwardIterator1
694 find_end(_ForwardIterator1 __first1
, _ForwardIterator1 __last1
,
695 _ForwardIterator2 __first2
, _ForwardIterator2 __last2
,
696 _BinaryPredicate __comp
)
698 // concept requirements
699 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator1
>)
700 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator2
>)
701 __glibcxx_function_requires(_BinaryPredicateConcept
<_BinaryPredicate
,
702 typename iterator_traits
<_ForwardIterator1
>::value_type
,
703 typename iterator_traits
<_ForwardIterator2
>::value_type
>)
704 __glibcxx_requires_valid_range(__first1
, __last1
);
705 __glibcxx_requires_valid_range(__first2
, __last2
);
707 return std::__find_end(__first1
, __last1
, __first2
, __last2
,
708 std::__iterator_category(__first1
),
709 std::__iterator_category(__first2
),
713 #ifdef __GXX_EXPERIMENTAL_CXX0X__
715 * @brief Checks that a predicate is true for all the elements
717 * @ingroup non_mutating_algorithms
718 * @param first An input iterator.
719 * @param last An input iterator.
720 * @param pred A predicate.
721 * @return True if the check is true, false otherwise.
723 * Returns true if @p pred is true for each element in the range
724 * @p [first,last), and false otherwise.
726 template<typename _InputIterator
, typename _Predicate
>
728 all_of(_InputIterator __first
, _InputIterator __last
, _Predicate __pred
)
729 { return __last
== std::find_if_not(__first
, __last
, __pred
); }
732 * @brief Checks that a predicate is false for all the elements
734 * @ingroup non_mutating_algorithms
735 * @param first An input iterator.
736 * @param last An input iterator.
737 * @param pred A predicate.
738 * @return True if the check is true, false otherwise.
740 * Returns true if @p pred is false for each element in the range
741 * @p [first,last), and false otherwise.
743 template<typename _InputIterator
, typename _Predicate
>
745 none_of(_InputIterator __first
, _InputIterator __last
, _Predicate __pred
)
746 { return __last
== _GLIBCXX_STD_P::find_if(__first
, __last
, __pred
); }
749 * @brief Checks that a predicate is false for at least an element
751 * @ingroup non_mutating_algorithms
752 * @param first An input iterator.
753 * @param last An input iterator.
754 * @param pred A predicate.
755 * @return True if the check is true, false otherwise.
757 * Returns true if an element exists in the range @p [first,last) such that
758 * @p pred is true, and false otherwise.
760 template<typename _InputIterator
, typename _Predicate
>
762 any_of(_InputIterator __first
, _InputIterator __last
, _Predicate __pred
)
763 { return !std::none_of(__first
, __last
, __pred
); }
766 * @brief Find the first element in a sequence for which a
767 * predicate is false.
768 * @ingroup non_mutating_algorithms
769 * @param first An input iterator.
770 * @param last An input iterator.
771 * @param pred A predicate.
772 * @return The first iterator @c i in the range @p [first,last)
773 * such that @p pred(*i) is false, or @p last if no such iterator exists.
775 template<typename _InputIterator
, typename _Predicate
>
776 inline _InputIterator
777 find_if_not(_InputIterator __first
, _InputIterator __last
,
780 // concept requirements
781 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
782 __glibcxx_function_requires(_UnaryPredicateConcept
<_Predicate
,
783 typename iterator_traits
<_InputIterator
>::value_type
>)
784 __glibcxx_requires_valid_range(__first
, __last
);
785 return std::__find_if_not(__first
, __last
, __pred
,
786 std::__iterator_category(__first
));
790 * @brief Checks whether the sequence is partitioned.
791 * @ingroup mutating_algorithms
792 * @param first An input iterator.
793 * @param last An input iterator.
794 * @param pred A predicate.
795 * @return True if the range @p [first,last) is partioned by @p pred,
796 * i.e. if all elements that satisfy @p pred appear before those that
799 template<typename _InputIterator
, typename _Predicate
>
801 is_partitioned(_InputIterator __first
, _InputIterator __last
,
804 __first
= std::find_if_not(__first
, __last
, __pred
);
805 return std::none_of(__first
, __last
, __pred
);
809 * @brief Find the partition point of a partitioned range.
810 * @ingroup mutating_algorithms
811 * @param first An iterator.
812 * @param last Another iterator.
813 * @param pred A predicate.
814 * @return An iterator @p mid such that @p all_of(first, mid, pred)
815 * and @p none_of(mid, last, pred) are both true.
817 template<typename _ForwardIterator
, typename _Predicate
>
819 partition_point(_ForwardIterator __first
, _ForwardIterator __last
,
822 // concept requirements
823 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
824 __glibcxx_function_requires(_UnaryPredicateConcept
<_Predicate
,
825 typename iterator_traits
<_ForwardIterator
>::value_type
>)
827 // A specific debug-mode test will be necessary...
828 __glibcxx_requires_valid_range(__first
, __last
);
830 typedef typename iterator_traits
<_ForwardIterator
>::difference_type
833 _DistanceType __len
= std::distance(__first
, __last
);
834 _DistanceType __half
;
835 _ForwardIterator __middle
;
841 std::advance(__middle
, __half
);
842 if (__pred(*__middle
))
846 __len
= __len
- __half
- 1;
857 * @brief Copy a sequence, removing elements of a given value.
858 * @ingroup mutating_algorithms
859 * @param first An input iterator.
860 * @param last An input iterator.
861 * @param result An output iterator.
862 * @param value The value to be removed.
863 * @return An iterator designating the end of the resulting sequence.
865 * Copies each element in the range @p [first,last) not equal to @p value
866 * to the range beginning at @p result.
867 * remove_copy() is stable, so the relative order of elements that are
868 * copied is unchanged.
870 template<typename _InputIterator
, typename _OutputIterator
, typename _Tp
>
872 remove_copy(_InputIterator __first
, _InputIterator __last
,
873 _OutputIterator __result
, const _Tp
& __value
)
875 // concept requirements
876 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
877 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
878 typename iterator_traits
<_InputIterator
>::value_type
>)
879 __glibcxx_function_requires(_EqualOpConcept
<
880 typename iterator_traits
<_InputIterator
>::value_type
, _Tp
>)
881 __glibcxx_requires_valid_range(__first
, __last
);
883 for (; __first
!= __last
; ++__first
)
884 if (!(*__first
== __value
))
886 *__result
= *__first
;
893 * @brief Copy a sequence, removing elements for which a predicate is true.
894 * @ingroup mutating_algorithms
895 * @param first An input iterator.
896 * @param last An input iterator.
897 * @param result An output iterator.
898 * @param pred A predicate.
899 * @return An iterator designating the end of the resulting sequence.
901 * Copies each element in the range @p [first,last) for which
902 * @p pred returns false to the range beginning at @p result.
904 * remove_copy_if() is stable, so the relative order of elements that are
905 * copied is unchanged.
907 template<typename _InputIterator
, typename _OutputIterator
,
910 remove_copy_if(_InputIterator __first
, _InputIterator __last
,
911 _OutputIterator __result
, _Predicate __pred
)
913 // concept requirements
914 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
915 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
916 typename iterator_traits
<_InputIterator
>::value_type
>)
917 __glibcxx_function_requires(_UnaryPredicateConcept
<_Predicate
,
918 typename iterator_traits
<_InputIterator
>::value_type
>)
919 __glibcxx_requires_valid_range(__first
, __last
);
921 for (; __first
!= __last
; ++__first
)
922 if (!bool(__pred(*__first
)))
924 *__result
= *__first
;
930 #ifdef __GXX_EXPERIMENTAL_CXX0X__
932 * @brief Copy the elements of a sequence for which a predicate is true.
933 * @ingroup mutating_algorithms
934 * @param first An input iterator.
935 * @param last An input iterator.
936 * @param result An output iterator.
937 * @param pred A predicate.
938 * @return An iterator designating the end of the resulting sequence.
940 * Copies each element in the range @p [first,last) for which
941 * @p pred returns true to the range beginning at @p result.
943 * copy_if() is stable, so the relative order of elements that are
944 * copied is unchanged.
946 template<typename _InputIterator
, typename _OutputIterator
,
949 copy_if(_InputIterator __first
, _InputIterator __last
,
950 _OutputIterator __result
, _Predicate __pred
)
952 // concept requirements
953 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
954 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
955 typename iterator_traits
<_InputIterator
>::value_type
>)
956 __glibcxx_function_requires(_UnaryPredicateConcept
<_Predicate
,
957 typename iterator_traits
<_InputIterator
>::value_type
>)
958 __glibcxx_requires_valid_range(__first
, __last
);
960 for (; __first
!= __last
; ++__first
)
961 if (__pred(*__first
))
963 *__result
= *__first
;
970 template<typename _InputIterator
, typename _Size
, typename _OutputIterator
>
972 __copy_n(_InputIterator __first
, _Size __n
,
973 _OutputIterator __result
, input_iterator_tag
)
975 for (; __n
> 0; --__n
)
977 *__result
= *__first
;
984 template<typename _RandomAccessIterator
, typename _Size
,
985 typename _OutputIterator
>
986 inline _OutputIterator
987 __copy_n(_RandomAccessIterator __first
, _Size __n
,
988 _OutputIterator __result
, random_access_iterator_tag
)
989 { return std::copy(__first
, __first
+ __n
, __result
); }
992 * @brief Copies the range [first,first+n) into [result,result+n).
993 * @ingroup mutating_algorithms
994 * @param first An input iterator.
995 * @param n The number of elements to copy.
996 * @param result An output iterator.
999 * This inline function will boil down to a call to @c memmove whenever
1000 * possible. Failing that, if random access iterators are passed, then the
1001 * loop count will be known (and therefore a candidate for compiler
1002 * optimizations such as unrolling).
1004 template<typename _InputIterator
, typename _Size
, typename _OutputIterator
>
1005 inline _OutputIterator
1006 copy_n(_InputIterator __first
, _Size __n
, _OutputIterator __result
)
1008 // concept requirements
1009 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
1010 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
1011 typename iterator_traits
<_InputIterator
>::value_type
>)
1013 return std::__copy_n(__first
, __n
, __result
,
1014 std::__iterator_category(__first
));
1018 * @brief Copy the elements of a sequence to separate output sequences
1019 * depending on the truth value of a predicate.
1020 * @ingroup mutating_algorithms
1021 * @param first An input iterator.
1022 * @param last An input iterator.
1023 * @param out_true An output iterator.
1024 * @param out_false An output iterator.
1025 * @param pred A predicate.
1026 * @return A pair designating the ends of the resulting sequences.
1028 * Copies each element in the range @p [first,last) for which
1029 * @p pred returns true to the range beginning at @p out_true
1030 * and each element for which @p pred returns false to @p out_false.
1032 template<typename _InputIterator
, typename _OutputIterator1
,
1033 typename _OutputIterator2
, typename _Predicate
>
1034 pair
<_OutputIterator1
, _OutputIterator2
>
1035 partition_copy(_InputIterator __first
, _InputIterator __last
,
1036 _OutputIterator1 __out_true
, _OutputIterator2 __out_false
,
1039 // concept requirements
1040 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
1041 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator1
,
1042 typename iterator_traits
<_InputIterator
>::value_type
>)
1043 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator2
,
1044 typename iterator_traits
<_InputIterator
>::value_type
>)
1045 __glibcxx_function_requires(_UnaryPredicateConcept
<_Predicate
,
1046 typename iterator_traits
<_InputIterator
>::value_type
>)
1047 __glibcxx_requires_valid_range(__first
, __last
);
1049 for (; __first
!= __last
; ++__first
)
1050 if (__pred(*__first
))
1052 *__out_true
= *__first
;
1057 *__out_false
= *__first
;
1061 return pair
<_OutputIterator1
, _OutputIterator2
>(__out_true
, __out_false
);
1066 * @brief Remove elements from a sequence.
1067 * @ingroup mutating_algorithms
1068 * @param first An input iterator.
1069 * @param last An input iterator.
1070 * @param value The value to be removed.
1071 * @return An iterator designating the end of the resulting sequence.
1073 * All elements equal to @p value are removed from the range
1076 * remove() is stable, so the relative order of elements that are
1077 * not removed is unchanged.
1079 * Elements between the end of the resulting sequence and @p last
1080 * are still present, but their value is unspecified.
1082 template<typename _ForwardIterator
, typename _Tp
>
1084 remove(_ForwardIterator __first
, _ForwardIterator __last
,
1087 // concept requirements
1088 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept
<
1090 __glibcxx_function_requires(_EqualOpConcept
<
1091 typename iterator_traits
<_ForwardIterator
>::value_type
, _Tp
>)
1092 __glibcxx_requires_valid_range(__first
, __last
);
1094 __first
= _GLIBCXX_STD_P::find(__first
, __last
, __value
);
1095 if(__first
== __last
)
1097 _ForwardIterator __result
= __first
;
1099 for(; __first
!= __last
; ++__first
)
1100 if(!(*__first
== __value
))
1102 *__result
= _GLIBCXX_MOVE(*__first
);
1109 * @brief Remove elements from a sequence using a predicate.
1110 * @ingroup mutating_algorithms
1111 * @param first A forward iterator.
1112 * @param last A forward iterator.
1113 * @param pred A predicate.
1114 * @return An iterator designating the end of the resulting sequence.
1116 * All elements for which @p pred returns true are removed from the range
1119 * remove_if() is stable, so the relative order of elements that are
1120 * not removed is unchanged.
1122 * Elements between the end of the resulting sequence and @p last
1123 * are still present, but their value is unspecified.
1125 template<typename _ForwardIterator
, typename _Predicate
>
1127 remove_if(_ForwardIterator __first
, _ForwardIterator __last
,
1130 // concept requirements
1131 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept
<
1133 __glibcxx_function_requires(_UnaryPredicateConcept
<_Predicate
,
1134 typename iterator_traits
<_ForwardIterator
>::value_type
>)
1135 __glibcxx_requires_valid_range(__first
, __last
);
1137 __first
= _GLIBCXX_STD_P::find_if(__first
, __last
, __pred
);
1138 if(__first
== __last
)
1140 _ForwardIterator __result
= __first
;
1142 for(; __first
!= __last
; ++__first
)
1143 if(!bool(__pred(*__first
)))
1145 *__result
= _GLIBCXX_MOVE(*__first
);
1152 * @brief Remove consecutive duplicate values from a sequence.
1153 * @ingroup mutating_algorithms
1154 * @param first A forward iterator.
1155 * @param last A forward iterator.
1156 * @return An iterator designating the end of the resulting sequence.
1158 * Removes all but the first element from each group of consecutive
1159 * values that compare equal.
1160 * unique() is stable, so the relative order of elements that are
1161 * not removed is unchanged.
1162 * Elements between the end of the resulting sequence and @p last
1163 * are still present, but their value is unspecified.
1165 template<typename _ForwardIterator
>
1167 unique(_ForwardIterator __first
, _ForwardIterator __last
)
1169 // concept requirements
1170 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept
<
1172 __glibcxx_function_requires(_EqualityComparableConcept
<
1173 typename iterator_traits
<_ForwardIterator
>::value_type
>)
1174 __glibcxx_requires_valid_range(__first
, __last
);
1176 // Skip the beginning, if already unique.
1177 __first
= _GLIBCXX_STD_P::adjacent_find(__first
, __last
);
1178 if (__first
== __last
)
1181 // Do the real copy work.
1182 _ForwardIterator __dest
= __first
;
1184 while (++__first
!= __last
)
1185 if (!(*__dest
== *__first
))
1186 *++__dest
= _GLIBCXX_MOVE(*__first
);
1191 * @brief Remove consecutive values from a sequence using a predicate.
1192 * @ingroup mutating_algorithms
1193 * @param first A forward iterator.
1194 * @param last A forward iterator.
1195 * @param binary_pred A binary predicate.
1196 * @return An iterator designating the end of the resulting sequence.
1198 * Removes all but the first element from each group of consecutive
1199 * values for which @p binary_pred returns true.
1200 * unique() is stable, so the relative order of elements that are
1201 * not removed is unchanged.
1202 * Elements between the end of the resulting sequence and @p last
1203 * are still present, but their value is unspecified.
1205 template<typename _ForwardIterator
, typename _BinaryPredicate
>
1207 unique(_ForwardIterator __first
, _ForwardIterator __last
,
1208 _BinaryPredicate __binary_pred
)
1210 // concept requirements
1211 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept
<
1213 __glibcxx_function_requires(_BinaryPredicateConcept
<_BinaryPredicate
,
1214 typename iterator_traits
<_ForwardIterator
>::value_type
,
1215 typename iterator_traits
<_ForwardIterator
>::value_type
>)
1216 __glibcxx_requires_valid_range(__first
, __last
);
1218 // Skip the beginning, if already unique.
1219 __first
= _GLIBCXX_STD_P::adjacent_find(__first
, __last
, __binary_pred
);
1220 if (__first
== __last
)
1223 // Do the real copy work.
1224 _ForwardIterator __dest
= __first
;
1226 while (++__first
!= __last
)
1227 if (!bool(__binary_pred(*__dest
, *__first
)))
1228 *++__dest
= _GLIBCXX_MOVE(*__first
);
1233 * This is an uglified unique_copy(_InputIterator, _InputIterator,
1235 * overloaded for forward iterators and output iterator as result.
1237 template<typename _ForwardIterator
, typename _OutputIterator
>
1239 __unique_copy(_ForwardIterator __first
, _ForwardIterator __last
,
1240 _OutputIterator __result
,
1241 forward_iterator_tag
, output_iterator_tag
)
1243 // concept requirements -- taken care of in dispatching function
1244 _ForwardIterator __next
= __first
;
1245 *__result
= *__first
;
1246 while (++__next
!= __last
)
1247 if (!(*__first
== *__next
))
1250 *++__result
= *__first
;
1256 * This is an uglified unique_copy(_InputIterator, _InputIterator,
1258 * overloaded for input iterators and output iterator as result.
1260 template<typename _InputIterator
, typename _OutputIterator
>
1262 __unique_copy(_InputIterator __first
, _InputIterator __last
,
1263 _OutputIterator __result
,
1264 input_iterator_tag
, output_iterator_tag
)
1266 // concept requirements -- taken care of in dispatching function
1267 typename iterator_traits
<_InputIterator
>::value_type __value
= *__first
;
1268 *__result
= __value
;
1269 while (++__first
!= __last
)
1270 if (!(__value
== *__first
))
1273 *++__result
= __value
;
1279 * This is an uglified unique_copy(_InputIterator, _InputIterator,
1281 * overloaded for input iterators and forward iterator as result.
1283 template<typename _InputIterator
, typename _ForwardIterator
>
1285 __unique_copy(_InputIterator __first
, _InputIterator __last
,
1286 _ForwardIterator __result
,
1287 input_iterator_tag
, forward_iterator_tag
)
1289 // concept requirements -- taken care of in dispatching function
1290 *__result
= *__first
;
1291 while (++__first
!= __last
)
1292 if (!(*__result
== *__first
))
1293 *++__result
= *__first
;
1298 * This is an uglified
1299 * unique_copy(_InputIterator, _InputIterator, _OutputIterator,
1301 * overloaded for forward iterators and output iterator as result.
1303 template<typename _ForwardIterator
, typename _OutputIterator
,
1304 typename _BinaryPredicate
>
1306 __unique_copy(_ForwardIterator __first
, _ForwardIterator __last
,
1307 _OutputIterator __result
, _BinaryPredicate __binary_pred
,
1308 forward_iterator_tag
, output_iterator_tag
)
1310 // concept requirements -- iterators already checked
1311 __glibcxx_function_requires(_BinaryPredicateConcept
<_BinaryPredicate
,
1312 typename iterator_traits
<_ForwardIterator
>::value_type
,
1313 typename iterator_traits
<_ForwardIterator
>::value_type
>)
1315 _ForwardIterator __next
= __first
;
1316 *__result
= *__first
;
1317 while (++__next
!= __last
)
1318 if (!bool(__binary_pred(*__first
, *__next
)))
1321 *++__result
= *__first
;
1327 * This is an uglified
1328 * unique_copy(_InputIterator, _InputIterator, _OutputIterator,
1330 * overloaded for input iterators and output iterator as result.
1332 template<typename _InputIterator
, typename _OutputIterator
,
1333 typename _BinaryPredicate
>
1335 __unique_copy(_InputIterator __first
, _InputIterator __last
,
1336 _OutputIterator __result
, _BinaryPredicate __binary_pred
,
1337 input_iterator_tag
, output_iterator_tag
)
1339 // concept requirements -- iterators already checked
1340 __glibcxx_function_requires(_BinaryPredicateConcept
<_BinaryPredicate
,
1341 typename iterator_traits
<_InputIterator
>::value_type
,
1342 typename iterator_traits
<_InputIterator
>::value_type
>)
1344 typename iterator_traits
<_InputIterator
>::value_type __value
= *__first
;
1345 *__result
= __value
;
1346 while (++__first
!= __last
)
1347 if (!bool(__binary_pred(__value
, *__first
)))
1350 *++__result
= __value
;
1356 * This is an uglified
1357 * unique_copy(_InputIterator, _InputIterator, _OutputIterator,
1359 * overloaded for input iterators and forward iterator as result.
1361 template<typename _InputIterator
, typename _ForwardIterator
,
1362 typename _BinaryPredicate
>
1364 __unique_copy(_InputIterator __first
, _InputIterator __last
,
1365 _ForwardIterator __result
, _BinaryPredicate __binary_pred
,
1366 input_iterator_tag
, forward_iterator_tag
)
1368 // concept requirements -- iterators already checked
1369 __glibcxx_function_requires(_BinaryPredicateConcept
<_BinaryPredicate
,
1370 typename iterator_traits
<_ForwardIterator
>::value_type
,
1371 typename iterator_traits
<_InputIterator
>::value_type
>)
1373 *__result
= *__first
;
1374 while (++__first
!= __last
)
1375 if (!bool(__binary_pred(*__result
, *__first
)))
1376 *++__result
= *__first
;
1381 * This is an uglified reverse(_BidirectionalIterator,
1382 * _BidirectionalIterator)
1383 * overloaded for bidirectional iterators.
1385 template<typename _BidirectionalIterator
>
1387 __reverse(_BidirectionalIterator __first
, _BidirectionalIterator __last
,
1388 bidirectional_iterator_tag
)
1391 if (__first
== __last
|| __first
== --__last
)
1395 std::iter_swap(__first
, __last
);
1401 * This is an uglified reverse(_BidirectionalIterator,
1402 * _BidirectionalIterator)
1403 * overloaded for random access iterators.
1405 template<typename _RandomAccessIterator
>
1407 __reverse(_RandomAccessIterator __first
, _RandomAccessIterator __last
,
1408 random_access_iterator_tag
)
1410 if (__first
== __last
)
1413 while (__first
< __last
)
1415 std::iter_swap(__first
, __last
);
1422 * @brief Reverse a sequence.
1423 * @ingroup mutating_algorithms
1424 * @param first A bidirectional iterator.
1425 * @param last A bidirectional iterator.
1426 * @return reverse() returns no value.
1428 * Reverses the order of the elements in the range @p [first,last),
1429 * so that the first element becomes the last etc.
1430 * For every @c i such that @p 0<=i<=(last-first)/2), @p reverse()
1431 * swaps @p *(first+i) and @p *(last-(i+1))
1433 template<typename _BidirectionalIterator
>
1435 reverse(_BidirectionalIterator __first
, _BidirectionalIterator __last
)
1437 // concept requirements
1438 __glibcxx_function_requires(_Mutable_BidirectionalIteratorConcept
<
1439 _BidirectionalIterator
>)
1440 __glibcxx_requires_valid_range(__first
, __last
);
1441 std::__reverse(__first
, __last
, std::__iterator_category(__first
));
1445 * @brief Copy a sequence, reversing its elements.
1446 * @ingroup mutating_algorithms
1447 * @param first A bidirectional iterator.
1448 * @param last A bidirectional iterator.
1449 * @param result An output iterator.
1450 * @return An iterator designating the end of the resulting sequence.
1452 * Copies the elements in the range @p [first,last) to the range
1453 * @p [result,result+(last-first)) such that the order of the
1454 * elements is reversed.
1455 * For every @c i such that @p 0<=i<=(last-first), @p reverse_copy()
1456 * performs the assignment @p *(result+(last-first)-i) = *(first+i).
1457 * The ranges @p [first,last) and @p [result,result+(last-first))
1460 template<typename _BidirectionalIterator
, typename _OutputIterator
>
1462 reverse_copy(_BidirectionalIterator __first
, _BidirectionalIterator __last
,
1463 _OutputIterator __result
)
1465 // concept requirements
1466 __glibcxx_function_requires(_BidirectionalIteratorConcept
<
1467 _BidirectionalIterator
>)
1468 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
1469 typename iterator_traits
<_BidirectionalIterator
>::value_type
>)
1470 __glibcxx_requires_valid_range(__first
, __last
);
1472 while (__first
!= __last
)
1475 *__result
= *__last
;
1482 * This is a helper function for the rotate algorithm specialized on RAIs.
1483 * It returns the greatest common divisor of two integer values.
1485 template<typename _EuclideanRingElement
>
1486 _EuclideanRingElement
1487 __gcd(_EuclideanRingElement __m
, _EuclideanRingElement __n
)
1491 _EuclideanRingElement __t
= __m
% __n
;
1498 /// This is a helper function for the rotate algorithm.
1499 template<typename _ForwardIterator
>
1501 __rotate(_ForwardIterator __first
,
1502 _ForwardIterator __middle
,
1503 _ForwardIterator __last
,
1504 forward_iterator_tag
)
1506 if (__first
== __middle
|| __last
== __middle
)
1509 _ForwardIterator __first2
= __middle
;
1512 std::iter_swap(__first
, __first2
);
1515 if (__first
== __middle
)
1516 __middle
= __first2
;
1518 while (__first2
!= __last
);
1520 __first2
= __middle
;
1522 while (__first2
!= __last
)
1524 std::iter_swap(__first
, __first2
);
1527 if (__first
== __middle
)
1528 __middle
= __first2
;
1529 else if (__first2
== __last
)
1530 __first2
= __middle
;
1534 /// This is a helper function for the rotate algorithm.
1535 template<typename _BidirectionalIterator
>
1537 __rotate(_BidirectionalIterator __first
,
1538 _BidirectionalIterator __middle
,
1539 _BidirectionalIterator __last
,
1540 bidirectional_iterator_tag
)
1542 // concept requirements
1543 __glibcxx_function_requires(_Mutable_BidirectionalIteratorConcept
<
1544 _BidirectionalIterator
>)
1546 if (__first
== __middle
|| __last
== __middle
)
1549 std::__reverse(__first
, __middle
, bidirectional_iterator_tag());
1550 std::__reverse(__middle
, __last
, bidirectional_iterator_tag());
1552 while (__first
!= __middle
&& __middle
!= __last
)
1554 std::iter_swap(__first
, --__last
);
1558 if (__first
== __middle
)
1559 std::__reverse(__middle
, __last
, bidirectional_iterator_tag());
1561 std::__reverse(__first
, __middle
, bidirectional_iterator_tag());
1564 /// This is a helper function for the rotate algorithm.
1565 template<typename _RandomAccessIterator
>
1567 __rotate(_RandomAccessIterator __first
,
1568 _RandomAccessIterator __middle
,
1569 _RandomAccessIterator __last
,
1570 random_access_iterator_tag
)
1572 // concept requirements
1573 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept
<
1574 _RandomAccessIterator
>)
1576 if (__first
== __middle
|| __last
== __middle
)
1579 typedef typename iterator_traits
<_RandomAccessIterator
>::difference_type
1581 typedef typename iterator_traits
<_RandomAccessIterator
>::value_type
1584 _Distance __n
= __last
- __first
;
1585 _Distance __k
= __middle
- __first
;
1587 if (__k
== __n
- __k
)
1589 std::swap_ranges(__first
, __middle
, __middle
);
1593 _RandomAccessIterator __p
= __first
;
1597 if (__k
< __n
- __k
)
1599 if (__is_pod(_ValueType
) && __k
== 1)
1601 _ValueType __t
= _GLIBCXX_MOVE(*__p
);
1602 _GLIBCXX_MOVE3(__p
+ 1, __p
+ __n
, __p
);
1603 *(__p
+ __n
- 1) = _GLIBCXX_MOVE(__t
);
1606 _RandomAccessIterator __q
= __p
+ __k
;
1607 for (_Distance __i
= 0; __i
< __n
- __k
; ++ __i
)
1609 std::iter_swap(__p
, __q
);
1616 std::swap(__n
, __k
);
1622 if (__is_pod(_ValueType
) && __k
== 1)
1624 _ValueType __t
= _GLIBCXX_MOVE(*(__p
+ __n
- 1));
1625 _GLIBCXX_MOVE_BACKWARD3(__p
, __p
+ __n
- 1, __p
+ __n
);
1626 *__p
= _GLIBCXX_MOVE(__t
);
1629 _RandomAccessIterator __q
= __p
+ __n
;
1631 for (_Distance __i
= 0; __i
< __n
- __k
; ++ __i
)
1635 std::iter_swap(__p
, __q
);
1640 std::swap(__n
, __k
);
1646 * @brief Rotate the elements of a sequence.
1647 * @ingroup mutating_algorithms
1648 * @param first A forward iterator.
1649 * @param middle A forward iterator.
1650 * @param last A forward iterator.
1653 * Rotates the elements of the range @p [first,last) by @p (middle-first)
1654 * positions so that the element at @p middle is moved to @p first, the
1655 * element at @p middle+1 is moved to @first+1 and so on for each element
1656 * in the range @p [first,last).
1658 * This effectively swaps the ranges @p [first,middle) and
1661 * Performs @p *(first+(n+(last-middle))%(last-first))=*(first+n) for
1662 * each @p n in the range @p [0,last-first).
1664 template<typename _ForwardIterator
>
1666 rotate(_ForwardIterator __first
, _ForwardIterator __middle
,
1667 _ForwardIterator __last
)
1669 // concept requirements
1670 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept
<
1672 __glibcxx_requires_valid_range(__first
, __middle
);
1673 __glibcxx_requires_valid_range(__middle
, __last
);
1675 typedef typename iterator_traits
<_ForwardIterator
>::iterator_category
1677 std::__rotate(__first
, __middle
, __last
, _IterType());
1681 * @brief Copy a sequence, rotating its elements.
1682 * @ingroup mutating_algorithms
1683 * @param first A forward iterator.
1684 * @param middle A forward iterator.
1685 * @param last A forward iterator.
1686 * @param result An output iterator.
1687 * @return An iterator designating the end of the resulting sequence.
1689 * Copies the elements of the range @p [first,last) to the range
1690 * beginning at @result, rotating the copied elements by @p (middle-first)
1691 * positions so that the element at @p middle is moved to @p result, the
1692 * element at @p middle+1 is moved to @result+1 and so on for each element
1693 * in the range @p [first,last).
1695 * Performs @p *(result+(n+(last-middle))%(last-first))=*(first+n) for
1696 * each @p n in the range @p [0,last-first).
1698 template<typename _ForwardIterator
, typename _OutputIterator
>
1700 rotate_copy(_ForwardIterator __first
, _ForwardIterator __middle
,
1701 _ForwardIterator __last
, _OutputIterator __result
)
1703 // concept requirements
1704 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
1705 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
1706 typename iterator_traits
<_ForwardIterator
>::value_type
>)
1707 __glibcxx_requires_valid_range(__first
, __middle
);
1708 __glibcxx_requires_valid_range(__middle
, __last
);
1710 return std::copy(__first
, __middle
,
1711 std::copy(__middle
, __last
, __result
));
1714 /// This is a helper function...
1715 template<typename _ForwardIterator
, typename _Predicate
>
1717 __partition(_ForwardIterator __first
, _ForwardIterator __last
,
1718 _Predicate __pred
, forward_iterator_tag
)
1720 if (__first
== __last
)
1723 while (__pred(*__first
))
1724 if (++__first
== __last
)
1727 _ForwardIterator __next
= __first
;
1729 while (++__next
!= __last
)
1730 if (__pred(*__next
))
1732 std::iter_swap(__first
, __next
);
1739 /// This is a helper function...
1740 template<typename _BidirectionalIterator
, typename _Predicate
>
1741 _BidirectionalIterator
1742 __partition(_BidirectionalIterator __first
, _BidirectionalIterator __last
,
1743 _Predicate __pred
, bidirectional_iterator_tag
)
1748 if (__first
== __last
)
1750 else if (__pred(*__first
))
1756 if (__first
== __last
)
1758 else if (!bool(__pred(*__last
)))
1762 std::iter_swap(__first
, __last
);
1769 /// This is a helper function...
1770 template<typename _ForwardIterator
, typename _Predicate
, typename _Distance
>
1772 __inplace_stable_partition(_ForwardIterator __first
,
1773 _ForwardIterator __last
,
1774 _Predicate __pred
, _Distance __len
)
1777 return __pred(*__first
) ? __last
: __first
;
1778 _ForwardIterator __middle
= __first
;
1779 std::advance(__middle
, __len
/ 2);
1780 _ForwardIterator __begin
= std::__inplace_stable_partition(__first
,
1784 _ForwardIterator __end
= std::__inplace_stable_partition(__middle
, __last
,
1788 std::rotate(__begin
, __middle
, __end
);
1789 std::advance(__begin
, std::distance(__middle
, __end
));
1793 /// This is a helper function...
1794 template<typename _ForwardIterator
, typename _Pointer
, typename _Predicate
,
1797 __stable_partition_adaptive(_ForwardIterator __first
,
1798 _ForwardIterator __last
,
1799 _Predicate __pred
, _Distance __len
,
1801 _Distance __buffer_size
)
1803 if (__len
<= __buffer_size
)
1805 _ForwardIterator __result1
= __first
;
1806 _Pointer __result2
= __buffer
;
1807 for (; __first
!= __last
; ++__first
)
1808 if (__pred(*__first
))
1810 *__result1
= _GLIBCXX_MOVE(*__first
);
1815 *__result2
= _GLIBCXX_MOVE(*__first
);
1818 _GLIBCXX_MOVE3(__buffer
, __result2
, __result1
);
1823 _ForwardIterator __middle
= __first
;
1824 std::advance(__middle
, __len
/ 2);
1825 _ForwardIterator __begin
=
1826 std::__stable_partition_adaptive(__first
, __middle
, __pred
,
1827 __len
/ 2, __buffer
,
1829 _ForwardIterator __end
=
1830 std::__stable_partition_adaptive(__middle
, __last
, __pred
,
1832 __buffer
, __buffer_size
);
1833 std::rotate(__begin
, __middle
, __end
);
1834 std::advance(__begin
, std::distance(__middle
, __end
));
1840 * @brief Move elements for which a predicate is true to the beginning
1841 * of a sequence, preserving relative ordering.
1842 * @ingroup mutating_algorithms
1843 * @param first A forward iterator.
1844 * @param last A forward iterator.
1845 * @param pred A predicate functor.
1846 * @return An iterator @p middle such that @p pred(i) is true for each
1847 * iterator @p i in the range @p [first,middle) and false for each @p i
1848 * in the range @p [middle,last).
1850 * Performs the same function as @p partition() with the additional
1851 * guarantee that the relative ordering of elements in each group is
1852 * preserved, so any two elements @p x and @p y in the range
1853 * @p [first,last) such that @p pred(x)==pred(y) will have the same
1854 * relative ordering after calling @p stable_partition().
1856 template<typename _ForwardIterator
, typename _Predicate
>
1858 stable_partition(_ForwardIterator __first
, _ForwardIterator __last
,
1861 // concept requirements
1862 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept
<
1864 __glibcxx_function_requires(_UnaryPredicateConcept
<_Predicate
,
1865 typename iterator_traits
<_ForwardIterator
>::value_type
>)
1866 __glibcxx_requires_valid_range(__first
, __last
);
1868 if (__first
== __last
)
1872 typedef typename iterator_traits
<_ForwardIterator
>::value_type
1874 typedef typename iterator_traits
<_ForwardIterator
>::difference_type
1877 _Temporary_buffer
<_ForwardIterator
, _ValueType
> __buf(__first
,
1879 if (__buf
.size() > 0)
1881 std::__stable_partition_adaptive(__first
, __last
, __pred
,
1882 _DistanceType(__buf
.requested_size()),
1884 _DistanceType(__buf
.size()));
1887 std::__inplace_stable_partition(__first
, __last
, __pred
,
1888 _DistanceType(__buf
.requested_size()));
1892 /// This is a helper function for the sort routines.
1893 template<typename _RandomAccessIterator
>
1895 __heap_select(_RandomAccessIterator __first
,
1896 _RandomAccessIterator __middle
,
1897 _RandomAccessIterator __last
)
1899 std::make_heap(__first
, __middle
);
1900 for (_RandomAccessIterator __i
= __middle
; __i
< __last
; ++__i
)
1901 if (*__i
< *__first
)
1902 std::__pop_heap(__first
, __middle
, __i
);
1905 /// This is a helper function for the sort routines.
1906 template<typename _RandomAccessIterator
, typename _Compare
>
1908 __heap_select(_RandomAccessIterator __first
,
1909 _RandomAccessIterator __middle
,
1910 _RandomAccessIterator __last
, _Compare __comp
)
1912 std::make_heap(__first
, __middle
, __comp
);
1913 for (_RandomAccessIterator __i
= __middle
; __i
< __last
; ++__i
)
1914 if (__comp(*__i
, *__first
))
1915 std::__pop_heap(__first
, __middle
, __i
, __comp
);
1921 * @brief Copy the smallest elements of a sequence.
1922 * @ingroup sorting_algorithms
1923 * @param first An iterator.
1924 * @param last Another iterator.
1925 * @param result_first A random-access iterator.
1926 * @param result_last Another random-access iterator.
1927 * @return An iterator indicating the end of the resulting sequence.
1929 * Copies and sorts the smallest N values from the range @p [first,last)
1930 * to the range beginning at @p result_first, where the number of
1931 * elements to be copied, @p N, is the smaller of @p (last-first) and
1932 * @p (result_last-result_first).
1933 * After the sort if @p i and @j are iterators in the range
1934 * @p [result_first,result_first+N) such that @i precedes @j then
1935 * @p *j<*i is false.
1936 * The value returned is @p result_first+N.
1938 template<typename _InputIterator
, typename _RandomAccessIterator
>
1939 _RandomAccessIterator
1940 partial_sort_copy(_InputIterator __first
, _InputIterator __last
,
1941 _RandomAccessIterator __result_first
,
1942 _RandomAccessIterator __result_last
)
1944 typedef typename iterator_traits
<_InputIterator
>::value_type
1946 typedef typename iterator_traits
<_RandomAccessIterator
>::value_type
1948 typedef typename iterator_traits
<_RandomAccessIterator
>::difference_type
1951 // concept requirements
1952 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
1953 __glibcxx_function_requires(_ConvertibleConcept
<_InputValueType
,
1955 __glibcxx_function_requires(_LessThanOpConcept
<_InputValueType
,
1957 __glibcxx_function_requires(_LessThanComparableConcept
<_OutputValueType
>)
1958 __glibcxx_requires_valid_range(__first
, __last
);
1959 __glibcxx_requires_valid_range(__result_first
, __result_last
);
1961 if (__result_first
== __result_last
)
1962 return __result_last
;
1963 _RandomAccessIterator __result_real_last
= __result_first
;
1964 while(__first
!= __last
&& __result_real_last
!= __result_last
)
1966 *__result_real_last
= *__first
;
1967 ++__result_real_last
;
1970 std::make_heap(__result_first
, __result_real_last
);
1971 while (__first
!= __last
)
1973 if (*__first
< *__result_first
)
1974 std::__adjust_heap(__result_first
, _DistanceType(0),
1975 _DistanceType(__result_real_last
1977 _InputValueType(*__first
));
1980 std::sort_heap(__result_first
, __result_real_last
);
1981 return __result_real_last
;
1985 * @brief Copy the smallest elements of a sequence using a predicate for
1987 * @ingroup sorting_algorithms
1988 * @param first An input iterator.
1989 * @param last Another input iterator.
1990 * @param result_first A random-access iterator.
1991 * @param result_last Another random-access iterator.
1992 * @param comp A comparison functor.
1993 * @return An iterator indicating the end of the resulting sequence.
1995 * Copies and sorts the smallest N values from the range @p [first,last)
1996 * to the range beginning at @p result_first, where the number of
1997 * elements to be copied, @p N, is the smaller of @p (last-first) and
1998 * @p (result_last-result_first).
1999 * After the sort if @p i and @j are iterators in the range
2000 * @p [result_first,result_first+N) such that @i precedes @j then
2001 * @p comp(*j,*i) is false.
2002 * The value returned is @p result_first+N.
2004 template<typename _InputIterator
, typename _RandomAccessIterator
, typename _Compare
>
2005 _RandomAccessIterator
2006 partial_sort_copy(_InputIterator __first
, _InputIterator __last
,
2007 _RandomAccessIterator __result_first
,
2008 _RandomAccessIterator __result_last
,
2011 typedef typename iterator_traits
<_InputIterator
>::value_type
2013 typedef typename iterator_traits
<_RandomAccessIterator
>::value_type
2015 typedef typename iterator_traits
<_RandomAccessIterator
>::difference_type
2018 // concept requirements
2019 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
2020 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept
<
2021 _RandomAccessIterator
>)
2022 __glibcxx_function_requires(_ConvertibleConcept
<_InputValueType
,
2024 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
2025 _InputValueType
, _OutputValueType
>)
2026 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
2027 _OutputValueType
, _OutputValueType
>)
2028 __glibcxx_requires_valid_range(__first
, __last
);
2029 __glibcxx_requires_valid_range(__result_first
, __result_last
);
2031 if (__result_first
== __result_last
)
2032 return __result_last
;
2033 _RandomAccessIterator __result_real_last
= __result_first
;
2034 while(__first
!= __last
&& __result_real_last
!= __result_last
)
2036 *__result_real_last
= *__first
;
2037 ++__result_real_last
;
2040 std::make_heap(__result_first
, __result_real_last
, __comp
);
2041 while (__first
!= __last
)
2043 if (__comp(*__first
, *__result_first
))
2044 std::__adjust_heap(__result_first
, _DistanceType(0),
2045 _DistanceType(__result_real_last
2047 _InputValueType(*__first
),
2051 std::sort_heap(__result_first
, __result_real_last
, __comp
);
2052 return __result_real_last
;
2055 /// This is a helper function for the sort routine.
2056 template<typename _RandomAccessIterator
>
2058 __unguarded_linear_insert(_RandomAccessIterator __last
)
2060 typename iterator_traits
<_RandomAccessIterator
>::value_type
2061 __val
= _GLIBCXX_MOVE(*__last
);
2062 _RandomAccessIterator __next
= __last
;
2064 while (__val
< *__next
)
2066 *__last
= _GLIBCXX_MOVE(*__next
);
2070 *__last
= _GLIBCXX_MOVE(__val
);
2073 /// This is a helper function for the sort routine.
2074 template<typename _RandomAccessIterator
, typename _Compare
>
2076 __unguarded_linear_insert(_RandomAccessIterator __last
,
2079 typename iterator_traits
<_RandomAccessIterator
>::value_type
2080 __val
= _GLIBCXX_MOVE(*__last
);
2081 _RandomAccessIterator __next
= __last
;
2083 while (__comp(__val
, *__next
))
2085 *__last
= _GLIBCXX_MOVE(*__next
);
2089 *__last
= _GLIBCXX_MOVE(__val
);
2092 /// This is a helper function for the sort routine.
2093 template<typename _RandomAccessIterator
>
2095 __insertion_sort(_RandomAccessIterator __first
,
2096 _RandomAccessIterator __last
)
2098 if (__first
== __last
)
2101 for (_RandomAccessIterator __i
= __first
+ 1; __i
!= __last
; ++__i
)
2103 if (*__i
< *__first
)
2105 typename iterator_traits
<_RandomAccessIterator
>::value_type
2106 __val
= _GLIBCXX_MOVE(*__i
);
2107 _GLIBCXX_MOVE_BACKWARD3(__first
, __i
, __i
+ 1);
2108 *__first
= _GLIBCXX_MOVE(__val
);
2111 std::__unguarded_linear_insert(__i
);
2115 /// This is a helper function for the sort routine.
2116 template<typename _RandomAccessIterator
, typename _Compare
>
2118 __insertion_sort(_RandomAccessIterator __first
,
2119 _RandomAccessIterator __last
, _Compare __comp
)
2121 if (__first
== __last
) return;
2123 for (_RandomAccessIterator __i
= __first
+ 1; __i
!= __last
; ++__i
)
2125 if (__comp(*__i
, *__first
))
2127 typename iterator_traits
<_RandomAccessIterator
>::value_type
2128 __val
= _GLIBCXX_MOVE(*__i
);
2129 _GLIBCXX_MOVE_BACKWARD3(__first
, __i
, __i
+ 1);
2130 *__first
= _GLIBCXX_MOVE(__val
);
2133 std::__unguarded_linear_insert(__i
, __comp
);
2137 /// This is a helper function for the sort routine.
2138 template<typename _RandomAccessIterator
>
2140 __unguarded_insertion_sort(_RandomAccessIterator __first
,
2141 _RandomAccessIterator __last
)
2143 typedef typename iterator_traits
<_RandomAccessIterator
>::value_type
2146 for (_RandomAccessIterator __i
= __first
; __i
!= __last
; ++__i
)
2147 std::__unguarded_linear_insert(__i
);
2150 /// This is a helper function for the sort routine.
2151 template<typename _RandomAccessIterator
, typename _Compare
>
2153 __unguarded_insertion_sort(_RandomAccessIterator __first
,
2154 _RandomAccessIterator __last
, _Compare __comp
)
2156 typedef typename iterator_traits
<_RandomAccessIterator
>::value_type
2159 for (_RandomAccessIterator __i
= __first
; __i
!= __last
; ++__i
)
2160 std::__unguarded_linear_insert(__i
, __comp
);
2165 * This controls some aspect of the sort routines.
2167 enum { _S_threshold
= 16 };
2169 /// This is a helper function for the sort routine.
2170 template<typename _RandomAccessIterator
>
2172 __final_insertion_sort(_RandomAccessIterator __first
,
2173 _RandomAccessIterator __last
)
2175 if (__last
- __first
> int(_S_threshold
))
2177 std::__insertion_sort(__first
, __first
+ int(_S_threshold
));
2178 std::__unguarded_insertion_sort(__first
+ int(_S_threshold
), __last
);
2181 std::__insertion_sort(__first
, __last
);
2184 /// This is a helper function for the sort routine.
2185 template<typename _RandomAccessIterator
, typename _Compare
>
2187 __final_insertion_sort(_RandomAccessIterator __first
,
2188 _RandomAccessIterator __last
, _Compare __comp
)
2190 if (__last
- __first
> int(_S_threshold
))
2192 std::__insertion_sort(__first
, __first
+ int(_S_threshold
), __comp
);
2193 std::__unguarded_insertion_sort(__first
+ int(_S_threshold
), __last
,
2197 std::__insertion_sort(__first
, __last
, __comp
);
2200 /// This is a helper function...
2201 template<typename _RandomAccessIterator
, typename _Tp
>
2202 _RandomAccessIterator
2203 __unguarded_partition(_RandomAccessIterator __first
,
2204 _RandomAccessIterator __last
, const _Tp
& __pivot
)
2208 while (*__first
< __pivot
)
2211 while (__pivot
< *__last
)
2213 if (!(__first
< __last
))
2215 std::iter_swap(__first
, __last
);
2220 /// This is a helper function...
2221 template<typename _RandomAccessIterator
, typename _Tp
, typename _Compare
>
2222 _RandomAccessIterator
2223 __unguarded_partition(_RandomAccessIterator __first
,
2224 _RandomAccessIterator __last
,
2225 const _Tp
& __pivot
, _Compare __comp
)
2229 while (__comp(*__first
, __pivot
))
2232 while (__comp(__pivot
, *__last
))
2234 if (!(__first
< __last
))
2236 std::iter_swap(__first
, __last
);
2241 /// This is a helper function...
2242 template<typename _RandomAccessIterator
>
2243 inline _RandomAccessIterator
2244 __unguarded_partition_pivot(_RandomAccessIterator __first
,
2245 _RandomAccessIterator __last
)
2247 _RandomAccessIterator __mid
= __first
+ (__last
- __first
) / 2;
2248 std::__move_median_first(__first
, __mid
, (__last
- 1));
2249 return std::__unguarded_partition(__first
+ 1, __last
, *__first
);
2253 /// This is a helper function...
2254 template<typename _RandomAccessIterator
, typename _Compare
>
2255 inline _RandomAccessIterator
2256 __unguarded_partition_pivot(_RandomAccessIterator __first
,
2257 _RandomAccessIterator __last
, _Compare __comp
)
2259 _RandomAccessIterator __mid
= __first
+ (__last
- __first
) / 2;
2260 std::__move_median_first(__first
, __mid
, (__last
- 1), __comp
);
2261 return std::__unguarded_partition(__first
+ 1, __last
, *__first
, __comp
);
2264 /// This is a helper function for the sort routine.
2265 template<typename _RandomAccessIterator
, typename _Size
>
2267 __introsort_loop(_RandomAccessIterator __first
,
2268 _RandomAccessIterator __last
,
2269 _Size __depth_limit
)
2271 while (__last
- __first
> int(_S_threshold
))
2273 if (__depth_limit
== 0)
2275 _GLIBCXX_STD_P::partial_sort(__first
, __last
, __last
);
2279 _RandomAccessIterator __cut
=
2280 std::__unguarded_partition_pivot(__first
, __last
);
2281 std::__introsort_loop(__cut
, __last
, __depth_limit
);
2286 /// This is a helper function for the sort routine.
2287 template<typename _RandomAccessIterator
, typename _Size
, typename _Compare
>
2289 __introsort_loop(_RandomAccessIterator __first
,
2290 _RandomAccessIterator __last
,
2291 _Size __depth_limit
, _Compare __comp
)
2293 while (__last
- __first
> int(_S_threshold
))
2295 if (__depth_limit
== 0)
2297 _GLIBCXX_STD_P::partial_sort(__first
, __last
, __last
, __comp
);
2301 _RandomAccessIterator __cut
=
2302 std::__unguarded_partition_pivot(__first
, __last
, __comp
);
2303 std::__introsort_loop(__cut
, __last
, __depth_limit
, __comp
);
2310 template<typename _RandomAccessIterator
, typename _Size
>
2312 __introselect(_RandomAccessIterator __first
, _RandomAccessIterator __nth
,
2313 _RandomAccessIterator __last
, _Size __depth_limit
)
2315 typedef typename iterator_traits
<_RandomAccessIterator
>::value_type
2318 while (__last
- __first
> 3)
2320 if (__depth_limit
== 0)
2322 std::__heap_select(__first
, __nth
+ 1, __last
);
2324 // Place the nth largest element in its final position.
2325 std::iter_swap(__first
, __nth
);
2329 _RandomAccessIterator __cut
=
2330 std::__unguarded_partition_pivot(__first
, __last
);
2336 std::__insertion_sort(__first
, __last
);
2339 template<typename _RandomAccessIterator
, typename _Size
, typename _Compare
>
2341 __introselect(_RandomAccessIterator __first
, _RandomAccessIterator __nth
,
2342 _RandomAccessIterator __last
, _Size __depth_limit
,
2345 typedef typename iterator_traits
<_RandomAccessIterator
>::value_type
2348 while (__last
- __first
> 3)
2350 if (__depth_limit
== 0)
2352 std::__heap_select(__first
, __nth
+ 1, __last
, __comp
);
2353 // Place the nth largest element in its final position.
2354 std::iter_swap(__first
, __nth
);
2358 _RandomAccessIterator __cut
=
2359 std::__unguarded_partition_pivot(__first
, __last
, __comp
);
2365 std::__insertion_sort(__first
, __last
, __comp
);
2370 // lower_bound moved to stl_algobase.h
2373 * @brief Finds the first position in which @a val could be inserted
2374 * without changing the ordering.
2375 * @ingroup binary_search_algorithms
2376 * @param first An iterator.
2377 * @param last Another iterator.
2378 * @param val The search term.
2379 * @param comp A functor to use for comparisons.
2380 * @return An iterator pointing to the first element <em>not less
2381 * than</em> @a val, or end() if every element is less
2383 * @ingroup binary_search_algorithms
2385 * The comparison function should have the same effects on ordering as
2386 * the function used for the initial sort.
2388 template<typename _ForwardIterator
, typename _Tp
, typename _Compare
>
2390 lower_bound(_ForwardIterator __first
, _ForwardIterator __last
,
2391 const _Tp
& __val
, _Compare __comp
)
2393 typedef typename iterator_traits
<_ForwardIterator
>::value_type
2395 typedef typename iterator_traits
<_ForwardIterator
>::difference_type
2398 // concept requirements
2399 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
2400 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
2402 __glibcxx_requires_partitioned_lower_pred(__first
, __last
,
2405 _DistanceType __len
= std::distance(__first
, __last
);
2409 _DistanceType __half
= __len
>> 1;
2410 _ForwardIterator __middle
= __first
;
2411 std::advance(__middle
, __half
);
2412 if (__comp(*__middle
, __val
))
2416 __len
= __len
- __half
- 1;
2425 * @brief Finds the last position in which @a val could be inserted
2426 * without changing the ordering.
2427 * @ingroup binary_search_algorithms
2428 * @param first An iterator.
2429 * @param last Another iterator.
2430 * @param val The search term.
2431 * @return An iterator pointing to the first element greater than @a val,
2432 * or end() if no elements are greater than @a val.
2433 * @ingroup binary_search_algorithms
2435 template<typename _ForwardIterator
, typename _Tp
>
2437 upper_bound(_ForwardIterator __first
, _ForwardIterator __last
,
2440 typedef typename iterator_traits
<_ForwardIterator
>::value_type
2442 typedef typename iterator_traits
<_ForwardIterator
>::difference_type
2445 // concept requirements
2446 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
2447 __glibcxx_function_requires(_LessThanOpConcept
<_Tp
, _ValueType
>)
2448 __glibcxx_requires_partitioned_upper(__first
, __last
, __val
);
2450 _DistanceType __len
= std::distance(__first
, __last
);
2454 _DistanceType __half
= __len
>> 1;
2455 _ForwardIterator __middle
= __first
;
2456 std::advance(__middle
, __half
);
2457 if (__val
< *__middle
)
2463 __len
= __len
- __half
- 1;
2470 * @brief Finds the last position in which @a val could be inserted
2471 * without changing the ordering.
2472 * @ingroup binary_search_algorithms
2473 * @param first An iterator.
2474 * @param last Another iterator.
2475 * @param val The search term.
2476 * @param comp A functor to use for comparisons.
2477 * @return An iterator pointing to the first element greater than @a val,
2478 * or end() if no elements are greater than @a val.
2479 * @ingroup binary_search_algorithms
2481 * The comparison function should have the same effects on ordering as
2482 * the function used for the initial sort.
2484 template<typename _ForwardIterator
, typename _Tp
, typename _Compare
>
2486 upper_bound(_ForwardIterator __first
, _ForwardIterator __last
,
2487 const _Tp
& __val
, _Compare __comp
)
2489 typedef typename iterator_traits
<_ForwardIterator
>::value_type
2491 typedef typename iterator_traits
<_ForwardIterator
>::difference_type
2494 // concept requirements
2495 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
2496 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
2498 __glibcxx_requires_partitioned_upper_pred(__first
, __last
,
2501 _DistanceType __len
= std::distance(__first
, __last
);
2505 _DistanceType __half
= __len
>> 1;
2506 _ForwardIterator __middle
= __first
;
2507 std::advance(__middle
, __half
);
2508 if (__comp(__val
, *__middle
))
2514 __len
= __len
- __half
- 1;
2521 * @brief Finds the largest subrange in which @a val could be inserted
2522 * at any place in it without changing the ordering.
2523 * @ingroup binary_search_algorithms
2524 * @param first An iterator.
2525 * @param last Another iterator.
2526 * @param val The search term.
2527 * @return An pair of iterators defining the subrange.
2528 * @ingroup binary_search_algorithms
2530 * This is equivalent to
2532 * std::make_pair(lower_bound(first, last, val),
2533 * upper_bound(first, last, val))
2535 * but does not actually call those functions.
2537 template<typename _ForwardIterator
, typename _Tp
>
2538 pair
<_ForwardIterator
, _ForwardIterator
>
2539 equal_range(_ForwardIterator __first
, _ForwardIterator __last
,
2542 typedef typename iterator_traits
<_ForwardIterator
>::value_type
2544 typedef typename iterator_traits
<_ForwardIterator
>::difference_type
2547 // concept requirements
2548 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
2549 __glibcxx_function_requires(_LessThanOpConcept
<_ValueType
, _Tp
>)
2550 __glibcxx_function_requires(_LessThanOpConcept
<_Tp
, _ValueType
>)
2551 __glibcxx_requires_partitioned_lower(__first
, __last
, __val
);
2552 __glibcxx_requires_partitioned_upper(__first
, __last
, __val
);
2554 _DistanceType __len
= std::distance(__first
, __last
);
2558 _DistanceType __half
= __len
>> 1;
2559 _ForwardIterator __middle
= __first
;
2560 std::advance(__middle
, __half
);
2561 if (*__middle
< __val
)
2565 __len
= __len
- __half
- 1;
2567 else if (__val
< *__middle
)
2571 _ForwardIterator __left
= std::lower_bound(__first
, __middle
,
2573 std::advance(__first
, __len
);
2574 _ForwardIterator __right
= std::upper_bound(++__middle
, __first
,
2576 return pair
<_ForwardIterator
, _ForwardIterator
>(__left
, __right
);
2579 return pair
<_ForwardIterator
, _ForwardIterator
>(__first
, __first
);
2583 * @brief Finds the largest subrange in which @a val could be inserted
2584 * at any place in it without changing the ordering.
2585 * @param first An iterator.
2586 * @param last Another iterator.
2587 * @param val The search term.
2588 * @param comp A functor to use for comparisons.
2589 * @return An pair of iterators defining the subrange.
2590 * @ingroup binary_search_algorithms
2592 * This is equivalent to
2594 * std::make_pair(lower_bound(first, last, val, comp),
2595 * upper_bound(first, last, val, comp))
2597 * but does not actually call those functions.
2599 template<typename _ForwardIterator
, typename _Tp
, typename _Compare
>
2600 pair
<_ForwardIterator
, _ForwardIterator
>
2601 equal_range(_ForwardIterator __first
, _ForwardIterator __last
,
2602 const _Tp
& __val
, _Compare __comp
)
2604 typedef typename iterator_traits
<_ForwardIterator
>::value_type
2606 typedef typename iterator_traits
<_ForwardIterator
>::difference_type
2609 // concept requirements
2610 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
2611 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
2613 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
2615 __glibcxx_requires_partitioned_lower_pred(__first
, __last
,
2617 __glibcxx_requires_partitioned_upper_pred(__first
, __last
,
2620 _DistanceType __len
= std::distance(__first
, __last
);
2624 _DistanceType __half
= __len
>> 1;
2625 _ForwardIterator __middle
= __first
;
2626 std::advance(__middle
, __half
);
2627 if (__comp(*__middle
, __val
))
2631 __len
= __len
- __half
- 1;
2633 else if (__comp(__val
, *__middle
))
2637 _ForwardIterator __left
= std::lower_bound(__first
, __middle
,
2639 std::advance(__first
, __len
);
2640 _ForwardIterator __right
= std::upper_bound(++__middle
, __first
,
2642 return pair
<_ForwardIterator
, _ForwardIterator
>(__left
, __right
);
2645 return pair
<_ForwardIterator
, _ForwardIterator
>(__first
, __first
);
2649 * @brief Determines whether an element exists in a range.
2650 * @ingroup binary_search_algorithms
2651 * @param first An iterator.
2652 * @param last Another iterator.
2653 * @param val The search term.
2654 * @return True if @a val (or its equivalent) is in [@a first,@a last ].
2656 * Note that this does not actually return an iterator to @a val. For
2657 * that, use std::find or a container's specialized find member functions.
2659 template<typename _ForwardIterator
, typename _Tp
>
2661 binary_search(_ForwardIterator __first
, _ForwardIterator __last
,
2664 typedef typename iterator_traits
<_ForwardIterator
>::value_type
2667 // concept requirements
2668 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
2669 __glibcxx_function_requires(_LessThanOpConcept
<_Tp
, _ValueType
>)
2670 __glibcxx_requires_partitioned_lower(__first
, __last
, __val
);
2671 __glibcxx_requires_partitioned_upper(__first
, __last
, __val
);
2673 _ForwardIterator __i
= std::lower_bound(__first
, __last
, __val
);
2674 return __i
!= __last
&& !(__val
< *__i
);
2678 * @brief Determines whether an element exists in a range.
2679 * @ingroup binary_search_algorithms
2680 * @param first An iterator.
2681 * @param last Another iterator.
2682 * @param val The search term.
2683 * @param comp A functor to use for comparisons.
2684 * @return True if @a val (or its equivalent) is in [@a first,@a last ].
2686 * Note that this does not actually return an iterator to @a val. For
2687 * that, use std::find or a container's specialized find member functions.
2689 * The comparison function should have the same effects on ordering as
2690 * the function used for the initial sort.
2692 template<typename _ForwardIterator
, typename _Tp
, typename _Compare
>
2694 binary_search(_ForwardIterator __first
, _ForwardIterator __last
,
2695 const _Tp
& __val
, _Compare __comp
)
2697 typedef typename iterator_traits
<_ForwardIterator
>::value_type
2700 // concept requirements
2701 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
2702 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
2704 __glibcxx_requires_partitioned_lower_pred(__first
, __last
,
2706 __glibcxx_requires_partitioned_upper_pred(__first
, __last
,
2709 _ForwardIterator __i
= std::lower_bound(__first
, __last
, __val
, __comp
);
2710 return __i
!= __last
&& !bool(__comp(__val
, *__i
));
2715 /// This is a helper function for the merge routines.
2716 template<typename _BidirectionalIterator1
, typename _BidirectionalIterator2
,
2717 typename _BidirectionalIterator3
>
2718 _BidirectionalIterator3
2719 __merge_backward(_BidirectionalIterator1 __first1
,
2720 _BidirectionalIterator1 __last1
,
2721 _BidirectionalIterator2 __first2
,
2722 _BidirectionalIterator2 __last2
,
2723 _BidirectionalIterator3 __result
)
2725 if (__first1
== __last1
)
2726 return std::copy_backward(__first2
, __last2
, __result
);
2727 if (__first2
== __last2
)
2728 return std::copy_backward(__first1
, __last1
, __result
);
2733 if (*__last2
< *__last1
)
2735 *--__result
= *__last1
;
2736 if (__first1
== __last1
)
2737 return std::copy_backward(__first2
, ++__last2
, __result
);
2742 *--__result
= *__last2
;
2743 if (__first2
== __last2
)
2744 return std::copy_backward(__first1
, ++__last1
, __result
);
2750 /// This is a helper function for the merge routines.
2751 template<typename _BidirectionalIterator1
, typename _BidirectionalIterator2
,
2752 typename _BidirectionalIterator3
, typename _Compare
>
2753 _BidirectionalIterator3
2754 __merge_backward(_BidirectionalIterator1 __first1
,
2755 _BidirectionalIterator1 __last1
,
2756 _BidirectionalIterator2 __first2
,
2757 _BidirectionalIterator2 __last2
,
2758 _BidirectionalIterator3 __result
,
2761 if (__first1
== __last1
)
2762 return std::copy_backward(__first2
, __last2
, __result
);
2763 if (__first2
== __last2
)
2764 return std::copy_backward(__first1
, __last1
, __result
);
2769 if (__comp(*__last2
, *__last1
))
2771 *--__result
= *__last1
;
2772 if (__first1
== __last1
)
2773 return std::copy_backward(__first2
, ++__last2
, __result
);
2778 *--__result
= *__last2
;
2779 if (__first2
== __last2
)
2780 return std::copy_backward(__first1
, ++__last1
, __result
);
2786 /// This is a helper function for the merge routines.
2787 template<typename _BidirectionalIterator1
, typename _BidirectionalIterator2
,
2789 _BidirectionalIterator1
2790 __rotate_adaptive(_BidirectionalIterator1 __first
,
2791 _BidirectionalIterator1 __middle
,
2792 _BidirectionalIterator1 __last
,
2793 _Distance __len1
, _Distance __len2
,
2794 _BidirectionalIterator2 __buffer
,
2795 _Distance __buffer_size
)
2797 _BidirectionalIterator2 __buffer_end
;
2798 if (__len1
> __len2
&& __len2
<= __buffer_size
)
2800 __buffer_end
= _GLIBCXX_MOVE3(__middle
, __last
, __buffer
);
2801 _GLIBCXX_MOVE_BACKWARD3(__first
, __middle
, __last
);
2802 return _GLIBCXX_MOVE3(__buffer
, __buffer_end
, __first
);
2804 else if (__len1
<= __buffer_size
)
2806 __buffer_end
= _GLIBCXX_MOVE3(__first
, __middle
, __buffer
);
2807 _GLIBCXX_MOVE3(__middle
, __last
, __first
);
2808 return _GLIBCXX_MOVE_BACKWARD3(__buffer
, __buffer_end
, __last
);
2812 std::rotate(__first
, __middle
, __last
);
2813 std::advance(__first
, std::distance(__middle
, __last
));
2818 /// This is a helper function for the merge routines.
2819 template<typename _BidirectionalIterator
, typename _Distance
,
2822 __merge_adaptive(_BidirectionalIterator __first
,
2823 _BidirectionalIterator __middle
,
2824 _BidirectionalIterator __last
,
2825 _Distance __len1
, _Distance __len2
,
2826 _Pointer __buffer
, _Distance __buffer_size
)
2828 if (__len1
<= __len2
&& __len1
<= __buffer_size
)
2830 _Pointer __buffer_end
= _GLIBCXX_MOVE3(__first
, __middle
, __buffer
);
2831 _GLIBCXX_STD_P::merge(_GLIBCXX_MAKE_MOVE_ITERATOR(__buffer
),
2832 _GLIBCXX_MAKE_MOVE_ITERATOR(__buffer_end
),
2833 _GLIBCXX_MAKE_MOVE_ITERATOR(__middle
),
2834 _GLIBCXX_MAKE_MOVE_ITERATOR(__last
),
2837 else if (__len2
<= __buffer_size
)
2839 _Pointer __buffer_end
= _GLIBCXX_MOVE3(__middle
, __last
, __buffer
);
2840 std::__merge_backward(_GLIBCXX_MAKE_MOVE_ITERATOR(__first
),
2841 _GLIBCXX_MAKE_MOVE_ITERATOR(__middle
),
2842 _GLIBCXX_MAKE_MOVE_ITERATOR(__buffer
),
2843 _GLIBCXX_MAKE_MOVE_ITERATOR(__buffer_end
),
2848 _BidirectionalIterator __first_cut
= __first
;
2849 _BidirectionalIterator __second_cut
= __middle
;
2850 _Distance __len11
= 0;
2851 _Distance __len22
= 0;
2852 if (__len1
> __len2
)
2854 __len11
= __len1
/ 2;
2855 std::advance(__first_cut
, __len11
);
2856 __second_cut
= std::lower_bound(__middle
, __last
,
2858 __len22
= std::distance(__middle
, __second_cut
);
2862 __len22
= __len2
/ 2;
2863 std::advance(__second_cut
, __len22
);
2864 __first_cut
= std::upper_bound(__first
, __middle
,
2866 __len11
= std::distance(__first
, __first_cut
);
2868 _BidirectionalIterator __new_middle
=
2869 std::__rotate_adaptive(__first_cut
, __middle
, __second_cut
,
2870 __len1
- __len11
, __len22
, __buffer
,
2872 std::__merge_adaptive(__first
, __first_cut
, __new_middle
, __len11
,
2873 __len22
, __buffer
, __buffer_size
);
2874 std::__merge_adaptive(__new_middle
, __second_cut
, __last
,
2876 __len2
- __len22
, __buffer
, __buffer_size
);
2880 /// This is a helper function for the merge routines.
2881 template<typename _BidirectionalIterator
, typename _Distance
,
2882 typename _Pointer
, typename _Compare
>
2884 __merge_adaptive(_BidirectionalIterator __first
,
2885 _BidirectionalIterator __middle
,
2886 _BidirectionalIterator __last
,
2887 _Distance __len1
, _Distance __len2
,
2888 _Pointer __buffer
, _Distance __buffer_size
,
2891 if (__len1
<= __len2
&& __len1
<= __buffer_size
)
2893 _Pointer __buffer_end
= _GLIBCXX_MOVE3(__first
, __middle
, __buffer
);
2894 _GLIBCXX_STD_P::merge(_GLIBCXX_MAKE_MOVE_ITERATOR(__buffer
),
2895 _GLIBCXX_MAKE_MOVE_ITERATOR(__buffer_end
),
2896 _GLIBCXX_MAKE_MOVE_ITERATOR(__middle
),
2897 _GLIBCXX_MAKE_MOVE_ITERATOR(__last
),
2900 else if (__len2
<= __buffer_size
)
2902 _Pointer __buffer_end
= _GLIBCXX_MOVE3(__middle
, __last
, __buffer
);
2903 std::__merge_backward(_GLIBCXX_MAKE_MOVE_ITERATOR(__first
),
2904 _GLIBCXX_MAKE_MOVE_ITERATOR(__middle
),
2905 _GLIBCXX_MAKE_MOVE_ITERATOR(__buffer
),
2906 _GLIBCXX_MAKE_MOVE_ITERATOR(__buffer_end
),
2911 _BidirectionalIterator __first_cut
= __first
;
2912 _BidirectionalIterator __second_cut
= __middle
;
2913 _Distance __len11
= 0;
2914 _Distance __len22
= 0;
2915 if (__len1
> __len2
)
2917 __len11
= __len1
/ 2;
2918 std::advance(__first_cut
, __len11
);
2919 __second_cut
= std::lower_bound(__middle
, __last
, *__first_cut
,
2921 __len22
= std::distance(__middle
, __second_cut
);
2925 __len22
= __len2
/ 2;
2926 std::advance(__second_cut
, __len22
);
2927 __first_cut
= std::upper_bound(__first
, __middle
, *__second_cut
,
2929 __len11
= std::distance(__first
, __first_cut
);
2931 _BidirectionalIterator __new_middle
=
2932 std::__rotate_adaptive(__first_cut
, __middle
, __second_cut
,
2933 __len1
- __len11
, __len22
, __buffer
,
2935 std::__merge_adaptive(__first
, __first_cut
, __new_middle
, __len11
,
2936 __len22
, __buffer
, __buffer_size
, __comp
);
2937 std::__merge_adaptive(__new_middle
, __second_cut
, __last
,
2939 __len2
- __len22
, __buffer
,
2940 __buffer_size
, __comp
);
2944 /// This is a helper function for the merge routines.
2945 template<typename _BidirectionalIterator
, typename _Distance
>
2947 __merge_without_buffer(_BidirectionalIterator __first
,
2948 _BidirectionalIterator __middle
,
2949 _BidirectionalIterator __last
,
2950 _Distance __len1
, _Distance __len2
)
2952 if (__len1
== 0 || __len2
== 0)
2954 if (__len1
+ __len2
== 2)
2956 if (*__middle
< *__first
)
2957 std::iter_swap(__first
, __middle
);
2960 _BidirectionalIterator __first_cut
= __first
;
2961 _BidirectionalIterator __second_cut
= __middle
;
2962 _Distance __len11
= 0;
2963 _Distance __len22
= 0;
2964 if (__len1
> __len2
)
2966 __len11
= __len1
/ 2;
2967 std::advance(__first_cut
, __len11
);
2968 __second_cut
= std::lower_bound(__middle
, __last
, *__first_cut
);
2969 __len22
= std::distance(__middle
, __second_cut
);
2973 __len22
= __len2
/ 2;
2974 std::advance(__second_cut
, __len22
);
2975 __first_cut
= std::upper_bound(__first
, __middle
, *__second_cut
);
2976 __len11
= std::distance(__first
, __first_cut
);
2978 std::rotate(__first_cut
, __middle
, __second_cut
);
2979 _BidirectionalIterator __new_middle
= __first_cut
;
2980 std::advance(__new_middle
, std::distance(__middle
, __second_cut
));
2981 std::__merge_without_buffer(__first
, __first_cut
, __new_middle
,
2983 std::__merge_without_buffer(__new_middle
, __second_cut
, __last
,
2984 __len1
- __len11
, __len2
- __len22
);
2987 /// This is a helper function for the merge routines.
2988 template<typename _BidirectionalIterator
, typename _Distance
,
2991 __merge_without_buffer(_BidirectionalIterator __first
,
2992 _BidirectionalIterator __middle
,
2993 _BidirectionalIterator __last
,
2994 _Distance __len1
, _Distance __len2
,
2997 if (__len1
== 0 || __len2
== 0)
2999 if (__len1
+ __len2
== 2)
3001 if (__comp(*__middle
, *__first
))
3002 std::iter_swap(__first
, __middle
);
3005 _BidirectionalIterator __first_cut
= __first
;
3006 _BidirectionalIterator __second_cut
= __middle
;
3007 _Distance __len11
= 0;
3008 _Distance __len22
= 0;
3009 if (__len1
> __len2
)
3011 __len11
= __len1
/ 2;
3012 std::advance(__first_cut
, __len11
);
3013 __second_cut
= std::lower_bound(__middle
, __last
, *__first_cut
,
3015 __len22
= std::distance(__middle
, __second_cut
);
3019 __len22
= __len2
/ 2;
3020 std::advance(__second_cut
, __len22
);
3021 __first_cut
= std::upper_bound(__first
, __middle
, *__second_cut
,
3023 __len11
= std::distance(__first
, __first_cut
);
3025 std::rotate(__first_cut
, __middle
, __second_cut
);
3026 _BidirectionalIterator __new_middle
= __first_cut
;
3027 std::advance(__new_middle
, std::distance(__middle
, __second_cut
));
3028 std::__merge_without_buffer(__first
, __first_cut
, __new_middle
,
3029 __len11
, __len22
, __comp
);
3030 std::__merge_without_buffer(__new_middle
, __second_cut
, __last
,
3031 __len1
- __len11
, __len2
- __len22
, __comp
);
3035 * @brief Merges two sorted ranges in place.
3036 * @ingroup sorting_algorithms
3037 * @param first An iterator.
3038 * @param middle Another iterator.
3039 * @param last Another iterator.
3042 * Merges two sorted and consecutive ranges, [first,middle) and
3043 * [middle,last), and puts the result in [first,last). The output will
3044 * be sorted. The sort is @e stable, that is, for equivalent
3045 * elements in the two ranges, elements from the first range will always
3046 * come before elements from the second.
3048 * If enough additional memory is available, this takes (last-first)-1
3049 * comparisons. Otherwise an NlogN algorithm is used, where N is
3050 * distance(first,last).
3052 template<typename _BidirectionalIterator
>
3054 inplace_merge(_BidirectionalIterator __first
,
3055 _BidirectionalIterator __middle
,
3056 _BidirectionalIterator __last
)
3058 typedef typename iterator_traits
<_BidirectionalIterator
>::value_type
3060 typedef typename iterator_traits
<_BidirectionalIterator
>::difference_type
3063 // concept requirements
3064 __glibcxx_function_requires(_Mutable_BidirectionalIteratorConcept
<
3065 _BidirectionalIterator
>)
3066 __glibcxx_function_requires(_LessThanComparableConcept
<_ValueType
>)
3067 __glibcxx_requires_sorted(__first
, __middle
);
3068 __glibcxx_requires_sorted(__middle
, __last
);
3070 if (__first
== __middle
|| __middle
== __last
)
3073 _DistanceType __len1
= std::distance(__first
, __middle
);
3074 _DistanceType __len2
= std::distance(__middle
, __last
);
3076 _Temporary_buffer
<_BidirectionalIterator
, _ValueType
> __buf(__first
,
3078 if (__buf
.begin() == 0)
3079 std::__merge_without_buffer(__first
, __middle
, __last
, __len1
, __len2
);
3081 std::__merge_adaptive(__first
, __middle
, __last
, __len1
, __len2
,
3082 __buf
.begin(), _DistanceType(__buf
.size()));
3086 * @brief Merges two sorted ranges in place.
3087 * @ingroup sorting_algorithms
3088 * @param first An iterator.
3089 * @param middle Another iterator.
3090 * @param last Another iterator.
3091 * @param comp A functor to use for comparisons.
3094 * Merges two sorted and consecutive ranges, [first,middle) and
3095 * [middle,last), and puts the result in [first,last). The output will
3096 * be sorted. The sort is @e stable, that is, for equivalent
3097 * elements in the two ranges, elements from the first range will always
3098 * come before elements from the second.
3100 * If enough additional memory is available, this takes (last-first)-1
3101 * comparisons. Otherwise an NlogN algorithm is used, where N is
3102 * distance(first,last).
3104 * The comparison function should have the same effects on ordering as
3105 * the function used for the initial sort.
3107 template<typename _BidirectionalIterator
, typename _Compare
>
3109 inplace_merge(_BidirectionalIterator __first
,
3110 _BidirectionalIterator __middle
,
3111 _BidirectionalIterator __last
,
3114 typedef typename iterator_traits
<_BidirectionalIterator
>::value_type
3116 typedef typename iterator_traits
<_BidirectionalIterator
>::difference_type
3119 // concept requirements
3120 __glibcxx_function_requires(_Mutable_BidirectionalIteratorConcept
<
3121 _BidirectionalIterator
>)
3122 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
3123 _ValueType
, _ValueType
>)
3124 __glibcxx_requires_sorted_pred(__first
, __middle
, __comp
);
3125 __glibcxx_requires_sorted_pred(__middle
, __last
, __comp
);
3127 if (__first
== __middle
|| __middle
== __last
)
3130 const _DistanceType __len1
= std::distance(__first
, __middle
);
3131 const _DistanceType __len2
= std::distance(__middle
, __last
);
3133 _Temporary_buffer
<_BidirectionalIterator
, _ValueType
> __buf(__first
,
3135 if (__buf
.begin() == 0)
3136 std::__merge_without_buffer(__first
, __middle
, __last
, __len1
,
3139 std::__merge_adaptive(__first
, __middle
, __last
, __len1
, __len2
,
3140 __buf
.begin(), _DistanceType(__buf
.size()),
3144 template<typename _RandomAccessIterator1
, typename _RandomAccessIterator2
,
3147 __merge_sort_loop(_RandomAccessIterator1 __first
,
3148 _RandomAccessIterator1 __last
,
3149 _RandomAccessIterator2 __result
,
3150 _Distance __step_size
)
3152 const _Distance __two_step
= 2 * __step_size
;
3154 while (__last
- __first
>= __two_step
)
3156 __result
= _GLIBCXX_STD_P::merge(
3157 _GLIBCXX_MAKE_MOVE_ITERATOR(__first
),
3158 _GLIBCXX_MAKE_MOVE_ITERATOR(__first
+ __step_size
),
3159 _GLIBCXX_MAKE_MOVE_ITERATOR(__first
+ __step_size
),
3160 _GLIBCXX_MAKE_MOVE_ITERATOR(__first
+ __two_step
),
3162 __first
+= __two_step
;
3165 __step_size
= std::min(_Distance(__last
- __first
), __step_size
);
3166 _GLIBCXX_STD_P::merge(_GLIBCXX_MAKE_MOVE_ITERATOR(__first
),
3167 _GLIBCXX_MAKE_MOVE_ITERATOR(__first
+
3169 _GLIBCXX_MAKE_MOVE_ITERATOR(__first
+
3171 _GLIBCXX_MAKE_MOVE_ITERATOR(__last
),
3175 template<typename _RandomAccessIterator1
, typename _RandomAccessIterator2
,
3176 typename _Distance
, typename _Compare
>
3178 __merge_sort_loop(_RandomAccessIterator1 __first
,
3179 _RandomAccessIterator1 __last
,
3180 _RandomAccessIterator2 __result
, _Distance __step_size
,
3183 const _Distance __two_step
= 2 * __step_size
;
3185 while (__last
- __first
>= __two_step
)
3187 __result
= _GLIBCXX_STD_P::merge(
3188 _GLIBCXX_MAKE_MOVE_ITERATOR(__first
),
3189 _GLIBCXX_MAKE_MOVE_ITERATOR(__first
+ __step_size
),
3190 _GLIBCXX_MAKE_MOVE_ITERATOR(__first
+ __step_size
),
3191 _GLIBCXX_MAKE_MOVE_ITERATOR(__first
+ __two_step
),
3193 __first
+= __two_step
;
3195 __step_size
= std::min(_Distance(__last
- __first
), __step_size
);
3197 _GLIBCXX_STD_P::merge(_GLIBCXX_MAKE_MOVE_ITERATOR(__first
),
3198 _GLIBCXX_MAKE_MOVE_ITERATOR(__first
+
3200 _GLIBCXX_MAKE_MOVE_ITERATOR(__first
+
3202 _GLIBCXX_MAKE_MOVE_ITERATOR(__last
),
3206 template<typename _RandomAccessIterator
, typename _Distance
>
3208 __chunk_insertion_sort(_RandomAccessIterator __first
,
3209 _RandomAccessIterator __last
,
3210 _Distance __chunk_size
)
3212 while (__last
- __first
>= __chunk_size
)
3214 std::__insertion_sort(__first
, __first
+ __chunk_size
);
3215 __first
+= __chunk_size
;
3217 std::__insertion_sort(__first
, __last
);
3220 template<typename _RandomAccessIterator
, typename _Distance
,
3223 __chunk_insertion_sort(_RandomAccessIterator __first
,
3224 _RandomAccessIterator __last
,
3225 _Distance __chunk_size
, _Compare __comp
)
3227 while (__last
- __first
>= __chunk_size
)
3229 std::__insertion_sort(__first
, __first
+ __chunk_size
, __comp
);
3230 __first
+= __chunk_size
;
3232 std::__insertion_sort(__first
, __last
, __comp
);
3235 enum { _S_chunk_size
= 7 };
3237 template<typename _RandomAccessIterator
, typename _Pointer
>
3239 __merge_sort_with_buffer(_RandomAccessIterator __first
,
3240 _RandomAccessIterator __last
,
3243 typedef typename iterator_traits
<_RandomAccessIterator
>::difference_type
3246 const _Distance __len
= __last
- __first
;
3247 const _Pointer __buffer_last
= __buffer
+ __len
;
3249 _Distance __step_size
= _S_chunk_size
;
3250 std::__chunk_insertion_sort(__first
, __last
, __step_size
);
3252 while (__step_size
< __len
)
3254 std::__merge_sort_loop(__first
, __last
, __buffer
, __step_size
);
3256 std::__merge_sort_loop(__buffer
, __buffer_last
, __first
, __step_size
);
3261 template<typename _RandomAccessIterator
, typename _Pointer
, typename _Compare
>
3263 __merge_sort_with_buffer(_RandomAccessIterator __first
,
3264 _RandomAccessIterator __last
,
3265 _Pointer __buffer
, _Compare __comp
)
3267 typedef typename iterator_traits
<_RandomAccessIterator
>::difference_type
3270 const _Distance __len
= __last
- __first
;
3271 const _Pointer __buffer_last
= __buffer
+ __len
;
3273 _Distance __step_size
= _S_chunk_size
;
3274 std::__chunk_insertion_sort(__first
, __last
, __step_size
, __comp
);
3276 while (__step_size
< __len
)
3278 std::__merge_sort_loop(__first
, __last
, __buffer
,
3279 __step_size
, __comp
);
3281 std::__merge_sort_loop(__buffer
, __buffer_last
, __first
,
3282 __step_size
, __comp
);
3287 template<typename _RandomAccessIterator
, typename _Pointer
,
3290 __stable_sort_adaptive(_RandomAccessIterator __first
,
3291 _RandomAccessIterator __last
,
3292 _Pointer __buffer
, _Distance __buffer_size
)
3294 const _Distance __len
= (__last
- __first
+ 1) / 2;
3295 const _RandomAccessIterator __middle
= __first
+ __len
;
3296 if (__len
> __buffer_size
)
3298 std::__stable_sort_adaptive(__first
, __middle
,
3299 __buffer
, __buffer_size
);
3300 std::__stable_sort_adaptive(__middle
, __last
,
3301 __buffer
, __buffer_size
);
3305 std::__merge_sort_with_buffer(__first
, __middle
, __buffer
);
3306 std::__merge_sort_with_buffer(__middle
, __last
, __buffer
);
3308 std::__merge_adaptive(__first
, __middle
, __last
,
3309 _Distance(__middle
- __first
),
3310 _Distance(__last
- __middle
),
3311 __buffer
, __buffer_size
);
3314 template<typename _RandomAccessIterator
, typename _Pointer
,
3315 typename _Distance
, typename _Compare
>
3317 __stable_sort_adaptive(_RandomAccessIterator __first
,
3318 _RandomAccessIterator __last
,
3319 _Pointer __buffer
, _Distance __buffer_size
,
3322 const _Distance __len
= (__last
- __first
+ 1) / 2;
3323 const _RandomAccessIterator __middle
= __first
+ __len
;
3324 if (__len
> __buffer_size
)
3326 std::__stable_sort_adaptive(__first
, __middle
, __buffer
,
3327 __buffer_size
, __comp
);
3328 std::__stable_sort_adaptive(__middle
, __last
, __buffer
,
3329 __buffer_size
, __comp
);
3333 std::__merge_sort_with_buffer(__first
, __middle
, __buffer
, __comp
);
3334 std::__merge_sort_with_buffer(__middle
, __last
, __buffer
, __comp
);
3336 std::__merge_adaptive(__first
, __middle
, __last
,
3337 _Distance(__middle
- __first
),
3338 _Distance(__last
- __middle
),
3339 __buffer
, __buffer_size
,
3343 /// This is a helper function for the stable sorting routines.
3344 template<typename _RandomAccessIterator
>
3346 __inplace_stable_sort(_RandomAccessIterator __first
,
3347 _RandomAccessIterator __last
)
3349 if (__last
- __first
< 15)
3351 std::__insertion_sort(__first
, __last
);
3354 _RandomAccessIterator __middle
= __first
+ (__last
- __first
) / 2;
3355 std::__inplace_stable_sort(__first
, __middle
);
3356 std::__inplace_stable_sort(__middle
, __last
);
3357 std::__merge_without_buffer(__first
, __middle
, __last
,
3362 /// This is a helper function for the stable sorting routines.
3363 template<typename _RandomAccessIterator
, typename _Compare
>
3365 __inplace_stable_sort(_RandomAccessIterator __first
,
3366 _RandomAccessIterator __last
, _Compare __comp
)
3368 if (__last
- __first
< 15)
3370 std::__insertion_sort(__first
, __last
, __comp
);
3373 _RandomAccessIterator __middle
= __first
+ (__last
- __first
) / 2;
3374 std::__inplace_stable_sort(__first
, __middle
, __comp
);
3375 std::__inplace_stable_sort(__middle
, __last
, __comp
);
3376 std::__merge_without_buffer(__first
, __middle
, __last
,
3384 // Set algorithms: includes, set_union, set_intersection, set_difference,
3385 // set_symmetric_difference. All of these algorithms have the precondition
3386 // that their input ranges are sorted and the postcondition that their output
3387 // ranges are sorted.
3390 * @brief Determines whether all elements of a sequence exists in a range.
3391 * @param first1 Start of search range.
3392 * @param last1 End of search range.
3393 * @param first2 Start of sequence
3394 * @param last2 End of sequence.
3395 * @return True if each element in [first2,last2) is contained in order
3396 * within [first1,last1). False otherwise.
3397 * @ingroup set_algorithms
3399 * This operation expects both [first1,last1) and [first2,last2) to be
3400 * sorted. Searches for the presence of each element in [first2,last2)
3401 * within [first1,last1). The iterators over each range only move forward,
3402 * so this is a linear algorithm. If an element in [first2,last2) is not
3403 * found before the search iterator reaches @a last2, false is returned.
3405 template<typename _InputIterator1
, typename _InputIterator2
>
3407 includes(_InputIterator1 __first1
, _InputIterator1 __last1
,
3408 _InputIterator2 __first2
, _InputIterator2 __last2
)
3410 typedef typename iterator_traits
<_InputIterator1
>::value_type
3412 typedef typename iterator_traits
<_InputIterator2
>::value_type
3415 // concept requirements
3416 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator1
>)
3417 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator2
>)
3418 __glibcxx_function_requires(_LessThanOpConcept
<_ValueType1
, _ValueType2
>)
3419 __glibcxx_function_requires(_LessThanOpConcept
<_ValueType2
, _ValueType1
>)
3420 __glibcxx_requires_sorted_set(__first1
, __last1
, __first2
);
3421 __glibcxx_requires_sorted_set(__first2
, __last2
, __first1
);
3423 while (__first1
!= __last1
&& __first2
!= __last2
)
3424 if (*__first2
< *__first1
)
3426 else if(*__first1
< *__first2
)
3429 ++__first1
, ++__first2
;
3431 return __first2
== __last2
;
3435 * @brief Determines whether all elements of a sequence exists in a range
3437 * @ingroup set_algorithms
3438 * @param first1 Start of search range.
3439 * @param last1 End of search range.
3440 * @param first2 Start of sequence
3441 * @param last2 End of sequence.
3442 * @param comp Comparison function to use.
3443 * @return True if each element in [first2,last2) is contained in order
3444 * within [first1,last1) according to comp. False otherwise.
3445 * @ingroup set_algorithms
3447 * This operation expects both [first1,last1) and [first2,last2) to be
3448 * sorted. Searches for the presence of each element in [first2,last2)
3449 * within [first1,last1), using comp to decide. The iterators over each
3450 * range only move forward, so this is a linear algorithm. If an element
3451 * in [first2,last2) is not found before the search iterator reaches @a
3452 * last2, false is returned.
3454 template<typename _InputIterator1
, typename _InputIterator2
,
3457 includes(_InputIterator1 __first1
, _InputIterator1 __last1
,
3458 _InputIterator2 __first2
, _InputIterator2 __last2
,
3461 typedef typename iterator_traits
<_InputIterator1
>::value_type
3463 typedef typename iterator_traits
<_InputIterator2
>::value_type
3466 // concept requirements
3467 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator1
>)
3468 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator2
>)
3469 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
3470 _ValueType1
, _ValueType2
>)
3471 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
3472 _ValueType2
, _ValueType1
>)
3473 __glibcxx_requires_sorted_set_pred(__first1
, __last1
, __first2
, __comp
);
3474 __glibcxx_requires_sorted_set_pred(__first2
, __last2
, __first1
, __comp
);
3476 while (__first1
!= __last1
&& __first2
!= __last2
)
3477 if (__comp(*__first2
, *__first1
))
3479 else if(__comp(*__first1
, *__first2
))
3482 ++__first1
, ++__first2
;
3484 return __first2
== __last2
;
3493 // set_symmetric_difference
3498 * @brief Permute range into the next @a dictionary ordering.
3499 * @ingroup sorting_algorithms
3500 * @param first Start of range.
3501 * @param last End of range.
3502 * @return False if wrapped to first permutation, true otherwise.
3504 * Treats all permutations of the range as a set of @a dictionary sorted
3505 * sequences. Permutes the current sequence into the next one of this set.
3506 * Returns true if there are more sequences to generate. If the sequence
3507 * is the largest of the set, the smallest is generated and false returned.
3509 template<typename _BidirectionalIterator
>
3511 next_permutation(_BidirectionalIterator __first
,
3512 _BidirectionalIterator __last
)
3514 // concept requirements
3515 __glibcxx_function_requires(_BidirectionalIteratorConcept
<
3516 _BidirectionalIterator
>)
3517 __glibcxx_function_requires(_LessThanComparableConcept
<
3518 typename iterator_traits
<_BidirectionalIterator
>::value_type
>)
3519 __glibcxx_requires_valid_range(__first
, __last
);
3521 if (__first
== __last
)
3523 _BidirectionalIterator __i
= __first
;
3532 _BidirectionalIterator __ii
= __i
;
3536 _BidirectionalIterator __j
= __last
;
3537 while (!(*__i
< *--__j
))
3539 std::iter_swap(__i
, __j
);
3540 std::reverse(__ii
, __last
);
3545 std::reverse(__first
, __last
);
3552 * @brief Permute range into the next @a dictionary ordering using
3553 * comparison functor.
3554 * @ingroup sorting_algorithms
3555 * @param first Start of range.
3556 * @param last End of range.
3557 * @param comp A comparison functor.
3558 * @return False if wrapped to first permutation, true otherwise.
3560 * Treats all permutations of the range [first,last) as a set of
3561 * @a dictionary sorted sequences ordered by @a comp. Permutes the current
3562 * sequence into the next one of this set. Returns true if there are more
3563 * sequences to generate. If the sequence is the largest of the set, the
3564 * smallest is generated and false returned.
3566 template<typename _BidirectionalIterator
, typename _Compare
>
3568 next_permutation(_BidirectionalIterator __first
,
3569 _BidirectionalIterator __last
, _Compare __comp
)
3571 // concept requirements
3572 __glibcxx_function_requires(_BidirectionalIteratorConcept
<
3573 _BidirectionalIterator
>)
3574 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
3575 typename iterator_traits
<_BidirectionalIterator
>::value_type
,
3576 typename iterator_traits
<_BidirectionalIterator
>::value_type
>)
3577 __glibcxx_requires_valid_range(__first
, __last
);
3579 if (__first
== __last
)
3581 _BidirectionalIterator __i
= __first
;
3590 _BidirectionalIterator __ii
= __i
;
3592 if (__comp(*__i
, *__ii
))
3594 _BidirectionalIterator __j
= __last
;
3595 while (!bool(__comp(*__i
, *--__j
)))
3597 std::iter_swap(__i
, __j
);
3598 std::reverse(__ii
, __last
);
3603 std::reverse(__first
, __last
);
3610 * @brief Permute range into the previous @a dictionary ordering.
3611 * @ingroup sorting_algorithms
3612 * @param first Start of range.
3613 * @param last End of range.
3614 * @return False if wrapped to last permutation, true otherwise.
3616 * Treats all permutations of the range as a set of @a dictionary sorted
3617 * sequences. Permutes the current sequence into the previous one of this
3618 * set. Returns true if there are more sequences to generate. If the
3619 * sequence is the smallest of the set, the largest is generated and false
3622 template<typename _BidirectionalIterator
>
3624 prev_permutation(_BidirectionalIterator __first
,
3625 _BidirectionalIterator __last
)
3627 // concept requirements
3628 __glibcxx_function_requires(_BidirectionalIteratorConcept
<
3629 _BidirectionalIterator
>)
3630 __glibcxx_function_requires(_LessThanComparableConcept
<
3631 typename iterator_traits
<_BidirectionalIterator
>::value_type
>)
3632 __glibcxx_requires_valid_range(__first
, __last
);
3634 if (__first
== __last
)
3636 _BidirectionalIterator __i
= __first
;
3645 _BidirectionalIterator __ii
= __i
;
3649 _BidirectionalIterator __j
= __last
;
3650 while (!(*--__j
< *__i
))
3652 std::iter_swap(__i
, __j
);
3653 std::reverse(__ii
, __last
);
3658 std::reverse(__first
, __last
);
3665 * @brief Permute range into the previous @a dictionary ordering using
3666 * comparison functor.
3667 * @ingroup sorting_algorithms
3668 * @param first Start of range.
3669 * @param last End of range.
3670 * @param comp A comparison functor.
3671 * @return False if wrapped to last permutation, true otherwise.
3673 * Treats all permutations of the range [first,last) as a set of
3674 * @a dictionary sorted sequences ordered by @a comp. Permutes the current
3675 * sequence into the previous one of this set. Returns true if there are
3676 * more sequences to generate. If the sequence is the smallest of the set,
3677 * the largest is generated and false returned.
3679 template<typename _BidirectionalIterator
, typename _Compare
>
3681 prev_permutation(_BidirectionalIterator __first
,
3682 _BidirectionalIterator __last
, _Compare __comp
)
3684 // concept requirements
3685 __glibcxx_function_requires(_BidirectionalIteratorConcept
<
3686 _BidirectionalIterator
>)
3687 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
3688 typename iterator_traits
<_BidirectionalIterator
>::value_type
,
3689 typename iterator_traits
<_BidirectionalIterator
>::value_type
>)
3690 __glibcxx_requires_valid_range(__first
, __last
);
3692 if (__first
== __last
)
3694 _BidirectionalIterator __i
= __first
;
3703 _BidirectionalIterator __ii
= __i
;
3705 if (__comp(*__ii
, *__i
))
3707 _BidirectionalIterator __j
= __last
;
3708 while (!bool(__comp(*--__j
, *__i
)))
3710 std::iter_swap(__i
, __j
);
3711 std::reverse(__ii
, __last
);
3716 std::reverse(__first
, __last
);
3726 * @brief Copy a sequence, replacing each element of one value with another
3728 * @param first An input iterator.
3729 * @param last An input iterator.
3730 * @param result An output iterator.
3731 * @param old_value The value to be replaced.
3732 * @param new_value The replacement value.
3733 * @return The end of the output sequence, @p result+(last-first).
3735 * Copies each element in the input range @p [first,last) to the
3736 * output range @p [result,result+(last-first)) replacing elements
3737 * equal to @p old_value with @p new_value.
3739 template<typename _InputIterator
, typename _OutputIterator
, typename _Tp
>
3741 replace_copy(_InputIterator __first
, _InputIterator __last
,
3742 _OutputIterator __result
,
3743 const _Tp
& __old_value
, const _Tp
& __new_value
)
3745 // concept requirements
3746 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
3747 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
3748 typename iterator_traits
<_InputIterator
>::value_type
>)
3749 __glibcxx_function_requires(_EqualOpConcept
<
3750 typename iterator_traits
<_InputIterator
>::value_type
, _Tp
>)
3751 __glibcxx_requires_valid_range(__first
, __last
);
3753 for (; __first
!= __last
; ++__first
, ++__result
)
3754 if (*__first
== __old_value
)
3755 *__result
= __new_value
;
3757 *__result
= *__first
;
3762 * @brief Copy a sequence, replacing each value for which a predicate
3763 * returns true with another value.
3764 * @ingroup mutating_algorithms
3765 * @param first An input iterator.
3766 * @param last An input iterator.
3767 * @param result An output iterator.
3768 * @param pred A predicate.
3769 * @param new_value The replacement value.
3770 * @return The end of the output sequence, @p result+(last-first).
3772 * Copies each element in the range @p [first,last) to the range
3773 * @p [result,result+(last-first)) replacing elements for which
3774 * @p pred returns true with @p new_value.
3776 template<typename _InputIterator
, typename _OutputIterator
,
3777 typename _Predicate
, typename _Tp
>
3779 replace_copy_if(_InputIterator __first
, _InputIterator __last
,
3780 _OutputIterator __result
,
3781 _Predicate __pred
, const _Tp
& __new_value
)
3783 // concept requirements
3784 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
3785 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
3786 typename iterator_traits
<_InputIterator
>::value_type
>)
3787 __glibcxx_function_requires(_UnaryPredicateConcept
<_Predicate
,
3788 typename iterator_traits
<_InputIterator
>::value_type
>)
3789 __glibcxx_requires_valid_range(__first
, __last
);
3791 for (; __first
!= __last
; ++__first
, ++__result
)
3792 if (__pred(*__first
))
3793 *__result
= __new_value
;
3795 *__result
= *__first
;
3799 #ifdef __GXX_EXPERIMENTAL_CXX0X__
3801 * @brief Determines whether the elements of a sequence are sorted.
3802 * @ingroup sorting_algorithms
3803 * @param first An iterator.
3804 * @param last Another iterator.
3805 * @return True if the elements are sorted, false otherwise.
3807 template<typename _ForwardIterator
>
3809 is_sorted(_ForwardIterator __first
, _ForwardIterator __last
)
3810 { return std::is_sorted_until(__first
, __last
) == __last
; }
3813 * @brief Determines whether the elements of a sequence are sorted
3814 * according to a comparison functor.
3815 * @ingroup sorting_algorithms
3816 * @param first An iterator.
3817 * @param last Another iterator.
3818 * @param comp A comparison functor.
3819 * @return True if the elements are sorted, false otherwise.
3821 template<typename _ForwardIterator
, typename _Compare
>
3823 is_sorted(_ForwardIterator __first
, _ForwardIterator __last
,
3825 { return std::is_sorted_until(__first
, __last
, __comp
) == __last
; }
3828 * @brief Determines the end of a sorted sequence.
3829 * @ingroup sorting_algorithms
3830 * @param first An iterator.
3831 * @param last Another iterator.
3832 * @return An iterator pointing to the last iterator i in [first, last)
3833 * for which the range [first, i) is sorted.
3835 template<typename _ForwardIterator
>
3837 is_sorted_until(_ForwardIterator __first
, _ForwardIterator __last
)
3839 // concept requirements
3840 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
3841 __glibcxx_function_requires(_LessThanComparableConcept
<
3842 typename iterator_traits
<_ForwardIterator
>::value_type
>)
3843 __glibcxx_requires_valid_range(__first
, __last
);
3845 if (__first
== __last
)
3848 _ForwardIterator __next
= __first
;
3849 for (++__next
; __next
!= __last
; __first
= __next
, ++__next
)
3850 if (*__next
< *__first
)
3856 * @brief Determines the end of a sorted sequence using comparison functor.
3857 * @ingroup sorting_algorithms
3858 * @param first An iterator.
3859 * @param last Another iterator.
3860 * @param comp A comparison functor.
3861 * @return An iterator pointing to the last iterator i in [first, last)
3862 * for which the range [first, i) is sorted.
3864 template<typename _ForwardIterator
, typename _Compare
>
3866 is_sorted_until(_ForwardIterator __first
, _ForwardIterator __last
,
3869 // concept requirements
3870 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
3871 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
3872 typename iterator_traits
<_ForwardIterator
>::value_type
,
3873 typename iterator_traits
<_ForwardIterator
>::value_type
>)
3874 __glibcxx_requires_valid_range(__first
, __last
);
3876 if (__first
== __last
)
3879 _ForwardIterator __next
= __first
;
3880 for (++__next
; __next
!= __last
; __first
= __next
, ++__next
)
3881 if (__comp(*__next
, *__first
))
3887 * @brief Determines min and max at once as an ordered pair.
3888 * @ingroup sorting_algorithms
3889 * @param a A thing of arbitrary type.
3890 * @param b Another thing of arbitrary type.
3891 * @return A pair(b, a) if b is smaller than a, pair(a, b) otherwise.
3893 template<typename _Tp
>
3894 inline pair
<const _Tp
&, const _Tp
&>
3895 minmax(const _Tp
& __a
, const _Tp
& __b
)
3897 // concept requirements
3898 __glibcxx_function_requires(_LessThanComparableConcept
<_Tp
>)
3900 return __b
< __a
? pair
<const _Tp
&, const _Tp
&>(__b
, __a
)
3901 : pair
<const _Tp
&, const _Tp
&>(__a
, __b
);
3905 * @brief Determines min and max at once as an ordered pair.
3906 * @ingroup sorting_algorithms
3907 * @param a A thing of arbitrary type.
3908 * @param b Another thing of arbitrary type.
3909 * @param comp A @link comparison_functor comparison functor@endlink.
3910 * @return A pair(b, a) if b is smaller than a, pair(a, b) otherwise.
3912 template<typename _Tp
, typename _Compare
>
3913 inline pair
<const _Tp
&, const _Tp
&>
3914 minmax(const _Tp
& __a
, const _Tp
& __b
, _Compare __comp
)
3916 return __comp(__b
, __a
) ? pair
<const _Tp
&, const _Tp
&>(__b
, __a
)
3917 : pair
<const _Tp
&, const _Tp
&>(__a
, __b
);
3921 * @brief Return a pair of iterators pointing to the minimum and maximum
3922 * elements in a range.
3923 * @ingroup sorting_algorithms
3924 * @param first Start of range.
3925 * @param last End of range.
3926 * @return make_pair(m, M), where m is the first iterator i in
3927 * [first, last) such that no other element in the range is
3928 * smaller, and where M is the last iterator i in [first, last)
3929 * such that no other element in the range is larger.
3931 template<typename _ForwardIterator
>
3932 pair
<_ForwardIterator
, _ForwardIterator
>
3933 minmax_element(_ForwardIterator __first
, _ForwardIterator __last
)
3935 // concept requirements
3936 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
3937 __glibcxx_function_requires(_LessThanComparableConcept
<
3938 typename iterator_traits
<_ForwardIterator
>::value_type
>)
3939 __glibcxx_requires_valid_range(__first
, __last
);
3941 _ForwardIterator __next
= __first
;
3942 if (__first
== __last
3943 || ++__next
== __last
)
3944 return std::make_pair(__first
, __first
);
3946 _ForwardIterator __min
, __max
;
3947 if (*__next
< *__first
)
3961 while (__first
!= __last
)
3964 if (++__next
== __last
)
3966 if (*__first
< *__min
)
3968 else if (!(*__first
< *__max
))
3973 if (*__next
< *__first
)
3975 if (*__next
< *__min
)
3977 if (!(*__first
< *__max
))
3982 if (*__first
< *__min
)
3984 if (!(*__next
< *__max
))
3992 return std::make_pair(__min
, __max
);
3996 * @brief Return a pair of iterators pointing to the minimum and maximum
3997 * elements in a range.
3998 * @ingroup sorting_algorithms
3999 * @param first Start of range.
4000 * @param last End of range.
4001 * @param comp Comparison functor.
4002 * @return make_pair(m, M), where m is the first iterator i in
4003 * [first, last) such that no other element in the range is
4004 * smaller, and where M is the last iterator i in [first, last)
4005 * such that no other element in the range is larger.
4007 template<typename _ForwardIterator
, typename _Compare
>
4008 pair
<_ForwardIterator
, _ForwardIterator
>
4009 minmax_element(_ForwardIterator __first
, _ForwardIterator __last
,
4012 // concept requirements
4013 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
4014 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
4015 typename iterator_traits
<_ForwardIterator
>::value_type
,
4016 typename iterator_traits
<_ForwardIterator
>::value_type
>)
4017 __glibcxx_requires_valid_range(__first
, __last
);
4019 _ForwardIterator __next
= __first
;
4020 if (__first
== __last
4021 || ++__next
== __last
)
4022 return std::make_pair(__first
, __first
);
4024 _ForwardIterator __min
, __max
;
4025 if (__comp(*__next
, *__first
))
4039 while (__first
!= __last
)
4042 if (++__next
== __last
)
4044 if (__comp(*__first
, *__min
))
4046 else if (!__comp(*__first
, *__max
))
4051 if (__comp(*__next
, *__first
))
4053 if (__comp(*__next
, *__min
))
4055 if (!__comp(*__first
, *__max
))
4060 if (__comp(*__first
, *__min
))
4062 if (!__comp(*__next
, *__max
))
4070 return std::make_pair(__min
, __max
);
4074 template<typename _Tp
>
4076 min(initializer_list
<_Tp
> __l
)
4077 { return *std::min_element(__l
.begin(), __l
.end()); }
4079 template<typename _Tp
, typename _Compare
>
4081 min(initializer_list
<_Tp
> __l
, _Compare __comp
)
4082 { return *std::min_element(__l
.begin(), __l
.end(), __comp
); }
4084 template<typename _Tp
>
4086 max(initializer_list
<_Tp
> __l
)
4087 { return *std::max_element(__l
.begin(), __l
.end()); }
4089 template<typename _Tp
, typename _Compare
>
4091 max(initializer_list
<_Tp
> __l
, _Compare __comp
)
4092 { return *std::max_element(__l
.begin(), __l
.end(), __comp
); }
4094 template<typename _Tp
>
4095 inline pair
<_Tp
, _Tp
>
4096 minmax(initializer_list
<_Tp
> __l
)
4098 pair
<const _Tp
*, const _Tp
*> __p
=
4099 std::minmax_element(__l
.begin(), __l
.end());
4100 return std::make_pair(*__p
.first
, *__p
.second
);
4103 template<typename _Tp
, typename _Compare
>
4104 inline pair
<_Tp
, _Tp
>
4105 minmax(initializer_list
<_Tp
> __l
, _Compare __comp
)
4107 pair
<const _Tp
*, const _Tp
*> __p
=
4108 std::minmax_element(__l
.begin(), __l
.end(), __comp
);
4109 return std::make_pair(*__p
.first
, *__p
.second
);
4112 #ifdef _GLIBCXX_USE_C99_STDINT_TR1
4114 * @brief Shuffle the elements of a sequence using a uniform random
4116 * @ingroup mutating_algorithms
4117 * @param first A forward iterator.
4118 * @param last A forward iterator.
4119 * @param g A UniformRandomNumberGenerator (26.5.1.3).
4122 * Reorders the elements in the range @p [first,last) using @p g to
4123 * provide random numbers.
4125 template<typename _RandomAccessIterator
,
4126 typename _UniformRandomNumberGenerator
>
4128 shuffle(_RandomAccessIterator __first
, _RandomAccessIterator __last
,
4129 _UniformRandomNumberGenerator
&& __g
)
4131 // concept requirements
4132 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept
<
4133 _RandomAccessIterator
>)
4134 __glibcxx_requires_valid_range(__first
, __last
);
4136 if (__first
== __last
)
4139 typedef typename iterator_traits
<_RandomAccessIterator
>::difference_type
4142 typedef typename
std::make_unsigned
<_DistanceType
>::type __ud_type
;
4143 typedef typename
std::uniform_int_distribution
<__ud_type
> __distr_type
;
4144 typedef typename
__distr_type::param_type __p_type
;
4147 for (_RandomAccessIterator __i
= __first
+ 1; __i
!= __last
; ++__i
)
4148 std::iter_swap(__i
, __first
+ __d(__g
, __p_type(0, __i
- __first
)));
4152 #endif // __GXX_EXPERIMENTAL_CXX0X__
4154 _GLIBCXX_END_NAMESPACE
4156 _GLIBCXX_BEGIN_NESTED_NAMESPACE(std
, _GLIBCXX_STD_P
)
4159 * @brief Apply a function to every element of a sequence.
4160 * @ingroup non_mutating_algorithms
4161 * @param first An input iterator.
4162 * @param last An input iterator.
4163 * @param f A unary function object.
4164 * @return @p f (std::move(@p f) in C++0x).
4166 * Applies the function object @p f to each element in the range
4167 * @p [first,last). @p f must not modify the order of the sequence.
4168 * If @p f has a return value it is ignored.
4170 template<typename _InputIterator
, typename _Function
>
4172 for_each(_InputIterator __first
, _InputIterator __last
, _Function __f
)
4174 // concept requirements
4175 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
4176 __glibcxx_requires_valid_range(__first
, __last
);
4177 for (; __first
!= __last
; ++__first
)
4179 return _GLIBCXX_MOVE(__f
);
4183 * @brief Find the first occurrence of a value in a sequence.
4184 * @ingroup non_mutating_algorithms
4185 * @param first An input iterator.
4186 * @param last An input iterator.
4187 * @param val The value to find.
4188 * @return The first iterator @c i in the range @p [first,last)
4189 * such that @c *i == @p val, or @p last if no such iterator exists.
4191 template<typename _InputIterator
, typename _Tp
>
4192 inline _InputIterator
4193 find(_InputIterator __first
, _InputIterator __last
,
4196 // concept requirements
4197 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
4198 __glibcxx_function_requires(_EqualOpConcept
<
4199 typename iterator_traits
<_InputIterator
>::value_type
, _Tp
>)
4200 __glibcxx_requires_valid_range(__first
, __last
);
4201 return std::__find(__first
, __last
, __val
,
4202 std::__iterator_category(__first
));
4206 * @brief Find the first element in a sequence for which a
4207 * predicate is true.
4208 * @ingroup non_mutating_algorithms
4209 * @param first An input iterator.
4210 * @param last An input iterator.
4211 * @param pred A predicate.
4212 * @return The first iterator @c i in the range @p [first,last)
4213 * such that @p pred(*i) is true, or @p last if no such iterator exists.
4215 template<typename _InputIterator
, typename _Predicate
>
4216 inline _InputIterator
4217 find_if(_InputIterator __first
, _InputIterator __last
,
4220 // concept requirements
4221 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
4222 __glibcxx_function_requires(_UnaryPredicateConcept
<_Predicate
,
4223 typename iterator_traits
<_InputIterator
>::value_type
>)
4224 __glibcxx_requires_valid_range(__first
, __last
);
4225 return std::__find_if(__first
, __last
, __pred
,
4226 std::__iterator_category(__first
));
4230 * @brief Find element from a set in a sequence.
4231 * @ingroup non_mutating_algorithms
4232 * @param first1 Start of range to search.
4233 * @param last1 End of range to search.
4234 * @param first2 Start of match candidates.
4235 * @param last2 End of match candidates.
4236 * @return The first iterator @c i in the range
4237 * @p [first1,last1) such that @c *i == @p *(i2) such that i2 is an
4238 * iterator in [first2,last2), or @p last1 if no such iterator exists.
4240 * Searches the range @p [first1,last1) for an element that is equal to
4241 * some element in the range [first2,last2). If found, returns an iterator
4242 * in the range [first1,last1), otherwise returns @p last1.
4244 template<typename _InputIterator
, typename _ForwardIterator
>
4246 find_first_of(_InputIterator __first1
, _InputIterator __last1
,
4247 _ForwardIterator __first2
, _ForwardIterator __last2
)
4249 // concept requirements
4250 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
4251 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
4252 __glibcxx_function_requires(_EqualOpConcept
<
4253 typename iterator_traits
<_InputIterator
>::value_type
,
4254 typename iterator_traits
<_ForwardIterator
>::value_type
>)
4255 __glibcxx_requires_valid_range(__first1
, __last1
);
4256 __glibcxx_requires_valid_range(__first2
, __last2
);
4258 for (; __first1
!= __last1
; ++__first1
)
4259 for (_ForwardIterator __iter
= __first2
; __iter
!= __last2
; ++__iter
)
4260 if (*__first1
== *__iter
)
4266 * @brief Find element from a set in a sequence using a predicate.
4267 * @ingroup non_mutating_algorithms
4268 * @param first1 Start of range to search.
4269 * @param last1 End of range to search.
4270 * @param first2 Start of match candidates.
4271 * @param last2 End of match candidates.
4272 * @param comp Predicate to use.
4273 * @return The first iterator @c i in the range
4274 * @p [first1,last1) such that @c comp(*i, @p *(i2)) is true and i2 is an
4275 * iterator in [first2,last2), or @p last1 if no such iterator exists.
4278 * Searches the range @p [first1,last1) for an element that is
4279 * equal to some element in the range [first2,last2). If found,
4280 * returns an iterator in the range [first1,last1), otherwise
4283 template<typename _InputIterator
, typename _ForwardIterator
,
4284 typename _BinaryPredicate
>
4286 find_first_of(_InputIterator __first1
, _InputIterator __last1
,
4287 _ForwardIterator __first2
, _ForwardIterator __last2
,
4288 _BinaryPredicate __comp
)
4290 // concept requirements
4291 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
4292 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
4293 __glibcxx_function_requires(_BinaryPredicateConcept
<_BinaryPredicate
,
4294 typename iterator_traits
<_InputIterator
>::value_type
,
4295 typename iterator_traits
<_ForwardIterator
>::value_type
>)
4296 __glibcxx_requires_valid_range(__first1
, __last1
);
4297 __glibcxx_requires_valid_range(__first2
, __last2
);
4299 for (; __first1
!= __last1
; ++__first1
)
4300 for (_ForwardIterator __iter
= __first2
; __iter
!= __last2
; ++__iter
)
4301 if (__comp(*__first1
, *__iter
))
4307 * @brief Find two adjacent values in a sequence that are equal.
4308 * @ingroup non_mutating_algorithms
4309 * @param first A forward iterator.
4310 * @param last A forward iterator.
4311 * @return The first iterator @c i such that @c i and @c i+1 are both
4312 * valid iterators in @p [first,last) and such that @c *i == @c *(i+1),
4313 * or @p last if no such iterator exists.
4315 template<typename _ForwardIterator
>
4317 adjacent_find(_ForwardIterator __first
, _ForwardIterator __last
)
4319 // concept requirements
4320 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
4321 __glibcxx_function_requires(_EqualityComparableConcept
<
4322 typename iterator_traits
<_ForwardIterator
>::value_type
>)
4323 __glibcxx_requires_valid_range(__first
, __last
);
4324 if (__first
== __last
)
4326 _ForwardIterator __next
= __first
;
4327 while(++__next
!= __last
)
4329 if (*__first
== *__next
)
4337 * @brief Find two adjacent values in a sequence using a predicate.
4338 * @ingroup non_mutating_algorithms
4339 * @param first A forward iterator.
4340 * @param last A forward iterator.
4341 * @param binary_pred A binary predicate.
4342 * @return The first iterator @c i such that @c i and @c i+1 are both
4343 * valid iterators in @p [first,last) and such that
4344 * @p binary_pred(*i,*(i+1)) is true, or @p last if no such iterator
4347 template<typename _ForwardIterator
, typename _BinaryPredicate
>
4349 adjacent_find(_ForwardIterator __first
, _ForwardIterator __last
,
4350 _BinaryPredicate __binary_pred
)
4352 // concept requirements
4353 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
4354 __glibcxx_function_requires(_BinaryPredicateConcept
<_BinaryPredicate
,
4355 typename iterator_traits
<_ForwardIterator
>::value_type
,
4356 typename iterator_traits
<_ForwardIterator
>::value_type
>)
4357 __glibcxx_requires_valid_range(__first
, __last
);
4358 if (__first
== __last
)
4360 _ForwardIterator __next
= __first
;
4361 while(++__next
!= __last
)
4363 if (__binary_pred(*__first
, *__next
))
4371 * @brief Count the number of copies of a value in a sequence.
4372 * @ingroup non_mutating_algorithms
4373 * @param first An input iterator.
4374 * @param last An input iterator.
4375 * @param value The value to be counted.
4376 * @return The number of iterators @c i in the range @p [first,last)
4377 * for which @c *i == @p value
4379 template<typename _InputIterator
, typename _Tp
>
4380 typename iterator_traits
<_InputIterator
>::difference_type
4381 count(_InputIterator __first
, _InputIterator __last
, const _Tp
& __value
)
4383 // concept requirements
4384 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
4385 __glibcxx_function_requires(_EqualOpConcept
<
4386 typename iterator_traits
<_InputIterator
>::value_type
, _Tp
>)
4387 __glibcxx_requires_valid_range(__first
, __last
);
4388 typename iterator_traits
<_InputIterator
>::difference_type __n
= 0;
4389 for (; __first
!= __last
; ++__first
)
4390 if (*__first
== __value
)
4396 * @brief Count the elements of a sequence for which a predicate is true.
4397 * @ingroup non_mutating_algorithms
4398 * @param first An input iterator.
4399 * @param last An input iterator.
4400 * @param pred A predicate.
4401 * @return The number of iterators @c i in the range @p [first,last)
4402 * for which @p pred(*i) is true.
4404 template<typename _InputIterator
, typename _Predicate
>
4405 typename iterator_traits
<_InputIterator
>::difference_type
4406 count_if(_InputIterator __first
, _InputIterator __last
, _Predicate __pred
)
4408 // concept requirements
4409 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
4410 __glibcxx_function_requires(_UnaryPredicateConcept
<_Predicate
,
4411 typename iterator_traits
<_InputIterator
>::value_type
>)
4412 __glibcxx_requires_valid_range(__first
, __last
);
4413 typename iterator_traits
<_InputIterator
>::difference_type __n
= 0;
4414 for (; __first
!= __last
; ++__first
)
4415 if (__pred(*__first
))
4421 * @brief Search a sequence for a matching sub-sequence.
4422 * @ingroup non_mutating_algorithms
4423 * @param first1 A forward iterator.
4424 * @param last1 A forward iterator.
4425 * @param first2 A forward iterator.
4426 * @param last2 A forward iterator.
4427 * @return The first iterator @c i in the range
4428 * @p [first1,last1-(last2-first2)) such that @c *(i+N) == @p *(first2+N)
4429 * for each @c N in the range @p [0,last2-first2), or @p last1 if no
4430 * such iterator exists.
4432 * Searches the range @p [first1,last1) for a sub-sequence that compares
4433 * equal value-by-value with the sequence given by @p [first2,last2) and
4434 * returns an iterator to the first element of the sub-sequence, or
4435 * @p last1 if the sub-sequence is not found.
4437 * Because the sub-sequence must lie completely within the range
4438 * @p [first1,last1) it must start at a position less than
4439 * @p last1-(last2-first2) where @p last2-first2 is the length of the
4441 * This means that the returned iterator @c i will be in the range
4442 * @p [first1,last1-(last2-first2))
4444 template<typename _ForwardIterator1
, typename _ForwardIterator2
>
4446 search(_ForwardIterator1 __first1
, _ForwardIterator1 __last1
,
4447 _ForwardIterator2 __first2
, _ForwardIterator2 __last2
)
4449 // concept requirements
4450 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator1
>)
4451 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator2
>)
4452 __glibcxx_function_requires(_EqualOpConcept
<
4453 typename iterator_traits
<_ForwardIterator1
>::value_type
,
4454 typename iterator_traits
<_ForwardIterator2
>::value_type
>)
4455 __glibcxx_requires_valid_range(__first1
, __last1
);
4456 __glibcxx_requires_valid_range(__first2
, __last2
);
4458 // Test for empty ranges
4459 if (__first1
== __last1
|| __first2
== __last2
)
4462 // Test for a pattern of length 1.
4463 _ForwardIterator2
__p1(__first2
);
4464 if (++__p1
== __last2
)
4465 return _GLIBCXX_STD_P::find(__first1
, __last1
, *__first2
);
4468 _ForwardIterator2 __p
;
4469 _ForwardIterator1 __current
= __first1
;
4473 __first1
= _GLIBCXX_STD_P::find(__first1
, __last1
, *__first2
);
4474 if (__first1
== __last1
)
4478 __current
= __first1
;
4479 if (++__current
== __last1
)
4482 while (*__current
== *__p
)
4484 if (++__p
== __last2
)
4486 if (++__current
== __last1
)
4495 * @brief Search a sequence for a matching sub-sequence using a predicate.
4496 * @ingroup non_mutating_algorithms
4497 * @param first1 A forward iterator.
4498 * @param last1 A forward iterator.
4499 * @param first2 A forward iterator.
4500 * @param last2 A forward iterator.
4501 * @param predicate A binary predicate.
4502 * @return The first iterator @c i in the range
4503 * @p [first1,last1-(last2-first2)) such that
4504 * @p predicate(*(i+N),*(first2+N)) is true for each @c N in the range
4505 * @p [0,last2-first2), or @p last1 if no such iterator exists.
4507 * Searches the range @p [first1,last1) for a sub-sequence that compares
4508 * equal value-by-value with the sequence given by @p [first2,last2),
4509 * using @p predicate to determine equality, and returns an iterator
4510 * to the first element of the sub-sequence, or @p last1 if no such
4513 * @see search(_ForwardIter1, _ForwardIter1, _ForwardIter2, _ForwardIter2)
4515 template<typename _ForwardIterator1
, typename _ForwardIterator2
,
4516 typename _BinaryPredicate
>
4518 search(_ForwardIterator1 __first1
, _ForwardIterator1 __last1
,
4519 _ForwardIterator2 __first2
, _ForwardIterator2 __last2
,
4520 _BinaryPredicate __predicate
)
4522 // concept requirements
4523 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator1
>)
4524 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator2
>)
4525 __glibcxx_function_requires(_BinaryPredicateConcept
<_BinaryPredicate
,
4526 typename iterator_traits
<_ForwardIterator1
>::value_type
,
4527 typename iterator_traits
<_ForwardIterator2
>::value_type
>)
4528 __glibcxx_requires_valid_range(__first1
, __last1
);
4529 __glibcxx_requires_valid_range(__first2
, __last2
);
4531 // Test for empty ranges
4532 if (__first1
== __last1
|| __first2
== __last2
)
4535 // Test for a pattern of length 1.
4536 _ForwardIterator2
__p1(__first2
);
4537 if (++__p1
== __last2
)
4539 while (__first1
!= __last1
4540 && !bool(__predicate(*__first1
, *__first2
)))
4546 _ForwardIterator2 __p
;
4547 _ForwardIterator1 __current
= __first1
;
4551 while (__first1
!= __last1
4552 && !bool(__predicate(*__first1
, *__first2
)))
4554 if (__first1
== __last1
)
4558 __current
= __first1
;
4559 if (++__current
== __last1
)
4562 while (__predicate(*__current
, *__p
))
4564 if (++__p
== __last2
)
4566 if (++__current
== __last1
)
4576 * @brief Search a sequence for a number of consecutive values.
4577 * @ingroup non_mutating_algorithms
4578 * @param first A forward iterator.
4579 * @param last A forward iterator.
4580 * @param count The number of consecutive values.
4581 * @param val The value to find.
4582 * @return The first iterator @c i in the range @p [first,last-count)
4583 * such that @c *(i+N) == @p val for each @c N in the range @p [0,count),
4584 * or @p last if no such iterator exists.
4586 * Searches the range @p [first,last) for @p count consecutive elements
4589 template<typename _ForwardIterator
, typename _Integer
, typename _Tp
>
4591 search_n(_ForwardIterator __first
, _ForwardIterator __last
,
4592 _Integer __count
, const _Tp
& __val
)
4594 // concept requirements
4595 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
4596 __glibcxx_function_requires(_EqualOpConcept
<
4597 typename iterator_traits
<_ForwardIterator
>::value_type
, _Tp
>)
4598 __glibcxx_requires_valid_range(__first
, __last
);
4603 return _GLIBCXX_STD_P::find(__first
, __last
, __val
);
4604 return std::__search_n(__first
, __last
, __count
, __val
,
4605 std::__iterator_category(__first
));
4610 * @brief Search a sequence for a number of consecutive values using a
4612 * @ingroup non_mutating_algorithms
4613 * @param first A forward iterator.
4614 * @param last A forward iterator.
4615 * @param count The number of consecutive values.
4616 * @param val The value to find.
4617 * @param binary_pred A binary predicate.
4618 * @return The first iterator @c i in the range @p [first,last-count)
4619 * such that @p binary_pred(*(i+N),val) is true for each @c N in the
4620 * range @p [0,count), or @p last if no such iterator exists.
4622 * Searches the range @p [first,last) for @p count consecutive elements
4623 * for which the predicate returns true.
4625 template<typename _ForwardIterator
, typename _Integer
, typename _Tp
,
4626 typename _BinaryPredicate
>
4628 search_n(_ForwardIterator __first
, _ForwardIterator __last
,
4629 _Integer __count
, const _Tp
& __val
,
4630 _BinaryPredicate __binary_pred
)
4632 // concept requirements
4633 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
4634 __glibcxx_function_requires(_BinaryPredicateConcept
<_BinaryPredicate
,
4635 typename iterator_traits
<_ForwardIterator
>::value_type
, _Tp
>)
4636 __glibcxx_requires_valid_range(__first
, __last
);
4642 while (__first
!= __last
&& !bool(__binary_pred(*__first
, __val
)))
4646 return std::__search_n(__first
, __last
, __count
, __val
, __binary_pred
,
4647 std::__iterator_category(__first
));
4652 * @brief Perform an operation on a sequence.
4653 * @ingroup mutating_algorithms
4654 * @param first An input iterator.
4655 * @param last An input iterator.
4656 * @param result An output iterator.
4657 * @param unary_op A unary operator.
4658 * @return An output iterator equal to @p result+(last-first).
4660 * Applies the operator to each element in the input range and assigns
4661 * the results to successive elements of the output sequence.
4662 * Evaluates @p *(result+N)=unary_op(*(first+N)) for each @c N in the
4663 * range @p [0,last-first).
4665 * @p unary_op must not alter its argument.
4667 template<typename _InputIterator
, typename _OutputIterator
,
4668 typename _UnaryOperation
>
4670 transform(_InputIterator __first
, _InputIterator __last
,
4671 _OutputIterator __result
, _UnaryOperation __unary_op
)
4673 // concept requirements
4674 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
4675 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
4676 // "the type returned by a _UnaryOperation"
4677 __typeof__(__unary_op(*__first
))>)
4678 __glibcxx_requires_valid_range(__first
, __last
);
4680 for (; __first
!= __last
; ++__first
, ++__result
)
4681 *__result
= __unary_op(*__first
);
4686 * @brief Perform an operation on corresponding elements of two sequences.
4687 * @ingroup mutating_algorithms
4688 * @param first1 An input iterator.
4689 * @param last1 An input iterator.
4690 * @param first2 An input iterator.
4691 * @param result An output iterator.
4692 * @param binary_op A binary operator.
4693 * @return An output iterator equal to @p result+(last-first).
4695 * Applies the operator to the corresponding elements in the two
4696 * input ranges and assigns the results to successive elements of the
4698 * Evaluates @p *(result+N)=binary_op(*(first1+N),*(first2+N)) for each
4699 * @c N in the range @p [0,last1-first1).
4701 * @p binary_op must not alter either of its arguments.
4703 template<typename _InputIterator1
, typename _InputIterator2
,
4704 typename _OutputIterator
, typename _BinaryOperation
>
4706 transform(_InputIterator1 __first1
, _InputIterator1 __last1
,
4707 _InputIterator2 __first2
, _OutputIterator __result
,
4708 _BinaryOperation __binary_op
)
4710 // concept requirements
4711 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator1
>)
4712 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator2
>)
4713 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
4714 // "the type returned by a _BinaryOperation"
4715 __typeof__(__binary_op(*__first1
,*__first2
))>)
4716 __glibcxx_requires_valid_range(__first1
, __last1
);
4718 for (; __first1
!= __last1
; ++__first1
, ++__first2
, ++__result
)
4719 *__result
= __binary_op(*__first1
, *__first2
);
4724 * @brief Replace each occurrence of one value in a sequence with another
4726 * @ingroup mutating_algorithms
4727 * @param first A forward iterator.
4728 * @param last A forward iterator.
4729 * @param old_value The value to be replaced.
4730 * @param new_value The replacement value.
4731 * @return replace() returns no value.
4733 * For each iterator @c i in the range @p [first,last) if @c *i ==
4734 * @p old_value then the assignment @c *i = @p new_value is performed.
4736 template<typename _ForwardIterator
, typename _Tp
>
4738 replace(_ForwardIterator __first
, _ForwardIterator __last
,
4739 const _Tp
& __old_value
, const _Tp
& __new_value
)
4741 // concept requirements
4742 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept
<
4744 __glibcxx_function_requires(_EqualOpConcept
<
4745 typename iterator_traits
<_ForwardIterator
>::value_type
, _Tp
>)
4746 __glibcxx_function_requires(_ConvertibleConcept
<_Tp
,
4747 typename iterator_traits
<_ForwardIterator
>::value_type
>)
4748 __glibcxx_requires_valid_range(__first
, __last
);
4750 for (; __first
!= __last
; ++__first
)
4751 if (*__first
== __old_value
)
4752 *__first
= __new_value
;
4756 * @brief Replace each value in a sequence for which a predicate returns
4757 * true with another value.
4758 * @ingroup mutating_algorithms
4759 * @param first A forward iterator.
4760 * @param last A forward iterator.
4761 * @param pred A predicate.
4762 * @param new_value The replacement value.
4763 * @return replace_if() returns no value.
4765 * For each iterator @c i in the range @p [first,last) if @p pred(*i)
4766 * is true then the assignment @c *i = @p new_value is performed.
4768 template<typename _ForwardIterator
, typename _Predicate
, typename _Tp
>
4770 replace_if(_ForwardIterator __first
, _ForwardIterator __last
,
4771 _Predicate __pred
, const _Tp
& __new_value
)
4773 // concept requirements
4774 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept
<
4776 __glibcxx_function_requires(_ConvertibleConcept
<_Tp
,
4777 typename iterator_traits
<_ForwardIterator
>::value_type
>)
4778 __glibcxx_function_requires(_UnaryPredicateConcept
<_Predicate
,
4779 typename iterator_traits
<_ForwardIterator
>::value_type
>)
4780 __glibcxx_requires_valid_range(__first
, __last
);
4782 for (; __first
!= __last
; ++__first
)
4783 if (__pred(*__first
))
4784 *__first
= __new_value
;
4788 * @brief Assign the result of a function object to each value in a
4790 * @ingroup mutating_algorithms
4791 * @param first A forward iterator.
4792 * @param last A forward iterator.
4793 * @param gen A function object taking no arguments and returning
4794 * std::iterator_traits<_ForwardIterator>::value_type
4795 * @return generate() returns no value.
4797 * Performs the assignment @c *i = @p gen() for each @c i in the range
4800 template<typename _ForwardIterator
, typename _Generator
>
4802 generate(_ForwardIterator __first
, _ForwardIterator __last
,
4805 // concept requirements
4806 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
4807 __glibcxx_function_requires(_GeneratorConcept
<_Generator
,
4808 typename iterator_traits
<_ForwardIterator
>::value_type
>)
4809 __glibcxx_requires_valid_range(__first
, __last
);
4811 for (; __first
!= __last
; ++__first
)
4816 * @brief Assign the result of a function object to each value in a
4818 * @ingroup mutating_algorithms
4819 * @param first A forward iterator.
4820 * @param n The length of the sequence.
4821 * @param gen A function object taking no arguments and returning
4822 * std::iterator_traits<_ForwardIterator>::value_type
4823 * @return The end of the sequence, @p first+n
4825 * Performs the assignment @c *i = @p gen() for each @c i in the range
4826 * @p [first,first+n).
4828 * _GLIBCXX_RESOLVE_LIB_DEFECTS
4829 * DR 865. More algorithms that throw away information
4831 template<typename _OutputIterator
, typename _Size
, typename _Generator
>
4833 generate_n(_OutputIterator __first
, _Size __n
, _Generator __gen
)
4835 // concept requirements
4836 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
4837 // "the type returned by a _Generator"
4838 __typeof__(__gen())>)
4840 for (__decltype(__n
+ 0) __niter
= __n
;
4841 __niter
> 0; --__niter
, ++__first
)
4848 * @brief Copy a sequence, removing consecutive duplicate values.
4849 * @ingroup mutating_algorithms
4850 * @param first An input iterator.
4851 * @param last An input iterator.
4852 * @param result An output iterator.
4853 * @return An iterator designating the end of the resulting sequence.
4855 * Copies each element in the range @p [first,last) to the range
4856 * beginning at @p result, except that only the first element is copied
4857 * from groups of consecutive elements that compare equal.
4858 * unique_copy() is stable, so the relative order of elements that are
4859 * copied is unchanged.
4861 * _GLIBCXX_RESOLVE_LIB_DEFECTS
4862 * DR 241. Does unique_copy() require CopyConstructible and Assignable?
4864 * _GLIBCXX_RESOLVE_LIB_DEFECTS
4865 * DR 538. 241 again: Does unique_copy() require CopyConstructible and
4868 template<typename _InputIterator
, typename _OutputIterator
>
4869 inline _OutputIterator
4870 unique_copy(_InputIterator __first
, _InputIterator __last
,
4871 _OutputIterator __result
)
4873 // concept requirements
4874 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
4875 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
4876 typename iterator_traits
<_InputIterator
>::value_type
>)
4877 __glibcxx_function_requires(_EqualityComparableConcept
<
4878 typename iterator_traits
<_InputIterator
>::value_type
>)
4879 __glibcxx_requires_valid_range(__first
, __last
);
4881 if (__first
== __last
)
4883 return std::__unique_copy(__first
, __last
, __result
,
4884 std::__iterator_category(__first
),
4885 std::__iterator_category(__result
));
4889 * @brief Copy a sequence, removing consecutive values using a predicate.
4890 * @ingroup mutating_algorithms
4891 * @param first An input iterator.
4892 * @param last An input iterator.
4893 * @param result An output iterator.
4894 * @param binary_pred A binary predicate.
4895 * @return An iterator designating the end of the resulting sequence.
4897 * Copies each element in the range @p [first,last) to the range
4898 * beginning at @p result, except that only the first element is copied
4899 * from groups of consecutive elements for which @p binary_pred returns
4901 * unique_copy() is stable, so the relative order of elements that are
4902 * copied is unchanged.
4904 * _GLIBCXX_RESOLVE_LIB_DEFECTS
4905 * DR 241. Does unique_copy() require CopyConstructible and Assignable?
4907 template<typename _InputIterator
, typename _OutputIterator
,
4908 typename _BinaryPredicate
>
4909 inline _OutputIterator
4910 unique_copy(_InputIterator __first
, _InputIterator __last
,
4911 _OutputIterator __result
,
4912 _BinaryPredicate __binary_pred
)
4914 // concept requirements -- predicates checked later
4915 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator
>)
4916 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
4917 typename iterator_traits
<_InputIterator
>::value_type
>)
4918 __glibcxx_requires_valid_range(__first
, __last
);
4920 if (__first
== __last
)
4922 return std::__unique_copy(__first
, __last
, __result
, __binary_pred
,
4923 std::__iterator_category(__first
),
4924 std::__iterator_category(__result
));
4929 * @brief Randomly shuffle the elements of a sequence.
4930 * @ingroup mutating_algorithms
4931 * @param first A forward iterator.
4932 * @param last A forward iterator.
4935 * Reorder the elements in the range @p [first,last) using a random
4936 * distribution, so that every possible ordering of the sequence is
4939 template<typename _RandomAccessIterator
>
4941 random_shuffle(_RandomAccessIterator __first
, _RandomAccessIterator __last
)
4943 // concept requirements
4944 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept
<
4945 _RandomAccessIterator
>)
4946 __glibcxx_requires_valid_range(__first
, __last
);
4948 if (__first
!= __last
)
4949 for (_RandomAccessIterator __i
= __first
+ 1; __i
!= __last
; ++__i
)
4950 std::iter_swap(__i
, __first
+ (std::rand() % ((__i
- __first
) + 1)));
4954 * @brief Shuffle the elements of a sequence using a random number
4956 * @ingroup mutating_algorithms
4957 * @param first A forward iterator.
4958 * @param last A forward iterator.
4959 * @param rand The RNG functor or function.
4962 * Reorders the elements in the range @p [first,last) using @p rand to
4963 * provide a random distribution. Calling @p rand(N) for a positive
4964 * integer @p N should return a randomly chosen integer from the
4967 template<typename _RandomAccessIterator
, typename _RandomNumberGenerator
>
4969 random_shuffle(_RandomAccessIterator __first
, _RandomAccessIterator __last
,
4970 #ifdef __GXX_EXPERIMENTAL_CXX0X__
4971 _RandomNumberGenerator
&& __rand
)
4973 _RandomNumberGenerator
& __rand
)
4976 // concept requirements
4977 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept
<
4978 _RandomAccessIterator
>)
4979 __glibcxx_requires_valid_range(__first
, __last
);
4981 if (__first
== __last
)
4983 for (_RandomAccessIterator __i
= __first
+ 1; __i
!= __last
; ++__i
)
4984 std::iter_swap(__i
, __first
+ __rand((__i
- __first
) + 1));
4989 * @brief Move elements for which a predicate is true to the beginning
4991 * @ingroup mutating_algorithms
4992 * @param first A forward iterator.
4993 * @param last A forward iterator.
4994 * @param pred A predicate functor.
4995 * @return An iterator @p middle such that @p pred(i) is true for each
4996 * iterator @p i in the range @p [first,middle) and false for each @p i
4997 * in the range @p [middle,last).
4999 * @p pred must not modify its operand. @p partition() does not preserve
5000 * the relative ordering of elements in each group, use
5001 * @p stable_partition() if this is needed.
5003 template<typename _ForwardIterator
, typename _Predicate
>
5004 inline _ForwardIterator
5005 partition(_ForwardIterator __first
, _ForwardIterator __last
,
5008 // concept requirements
5009 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept
<
5011 __glibcxx_function_requires(_UnaryPredicateConcept
<_Predicate
,
5012 typename iterator_traits
<_ForwardIterator
>::value_type
>)
5013 __glibcxx_requires_valid_range(__first
, __last
);
5015 return std::__partition(__first
, __last
, __pred
,
5016 std::__iterator_category(__first
));
5022 * @brief Sort the smallest elements of a sequence.
5023 * @ingroup sorting_algorithms
5024 * @param first An iterator.
5025 * @param middle Another iterator.
5026 * @param last Another iterator.
5029 * Sorts the smallest @p (middle-first) elements in the range
5030 * @p [first,last) and moves them to the range @p [first,middle). The
5031 * order of the remaining elements in the range @p [middle,last) is
5033 * After the sort if @p i and @j are iterators in the range
5034 * @p [first,middle) such that @i precedes @j and @k is an iterator in
5035 * the range @p [middle,last) then @p *j<*i and @p *k<*i are both false.
5037 template<typename _RandomAccessIterator
>
5039 partial_sort(_RandomAccessIterator __first
,
5040 _RandomAccessIterator __middle
,
5041 _RandomAccessIterator __last
)
5043 typedef typename iterator_traits
<_RandomAccessIterator
>::value_type
5046 // concept requirements
5047 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept
<
5048 _RandomAccessIterator
>)
5049 __glibcxx_function_requires(_LessThanComparableConcept
<_ValueType
>)
5050 __glibcxx_requires_valid_range(__first
, __middle
);
5051 __glibcxx_requires_valid_range(__middle
, __last
);
5053 std::__heap_select(__first
, __middle
, __last
);
5054 std::sort_heap(__first
, __middle
);
5058 * @brief Sort the smallest elements of a sequence using a predicate
5060 * @ingroup sorting_algorithms
5061 * @param first An iterator.
5062 * @param middle Another iterator.
5063 * @param last Another iterator.
5064 * @param comp A comparison functor.
5067 * Sorts the smallest @p (middle-first) elements in the range
5068 * @p [first,last) and moves them to the range @p [first,middle). The
5069 * order of the remaining elements in the range @p [middle,last) is
5071 * After the sort if @p i and @j are iterators in the range
5072 * @p [first,middle) such that @i precedes @j and @k is an iterator in
5073 * the range @p [middle,last) then @p *comp(j,*i) and @p comp(*k,*i)
5076 template<typename _RandomAccessIterator
, typename _Compare
>
5078 partial_sort(_RandomAccessIterator __first
,
5079 _RandomAccessIterator __middle
,
5080 _RandomAccessIterator __last
,
5083 typedef typename iterator_traits
<_RandomAccessIterator
>::value_type
5086 // concept requirements
5087 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept
<
5088 _RandomAccessIterator
>)
5089 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
5090 _ValueType
, _ValueType
>)
5091 __glibcxx_requires_valid_range(__first
, __middle
);
5092 __glibcxx_requires_valid_range(__middle
, __last
);
5094 std::__heap_select(__first
, __middle
, __last
, __comp
);
5095 std::sort_heap(__first
, __middle
, __comp
);
5099 * @brief Sort a sequence just enough to find a particular position.
5100 * @ingroup sorting_algorithms
5101 * @param first An iterator.
5102 * @param nth Another iterator.
5103 * @param last Another iterator.
5106 * Rearranges the elements in the range @p [first,last) so that @p *nth
5107 * is the same element that would have been in that position had the
5108 * whole sequence been sorted.
5109 * whole sequence been sorted. The elements either side of @p *nth are
5110 * not completely sorted, but for any iterator @i in the range
5111 * @p [first,nth) and any iterator @j in the range @p [nth,last) it
5112 * holds that @p *j<*i is false.
5114 template<typename _RandomAccessIterator
>
5116 nth_element(_RandomAccessIterator __first
, _RandomAccessIterator __nth
,
5117 _RandomAccessIterator __last
)
5119 typedef typename iterator_traits
<_RandomAccessIterator
>::value_type
5122 // concept requirements
5123 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept
<
5124 _RandomAccessIterator
>)
5125 __glibcxx_function_requires(_LessThanComparableConcept
<_ValueType
>)
5126 __glibcxx_requires_valid_range(__first
, __nth
);
5127 __glibcxx_requires_valid_range(__nth
, __last
);
5129 if (__first
== __last
|| __nth
== __last
)
5132 std::__introselect(__first
, __nth
, __last
,
5133 std::__lg(__last
- __first
) * 2);
5137 * @brief Sort a sequence just enough to find a particular position
5138 * using a predicate for comparison.
5139 * @ingroup sorting_algorithms
5140 * @param first An iterator.
5141 * @param nth Another iterator.
5142 * @param last Another iterator.
5143 * @param comp A comparison functor.
5146 * Rearranges the elements in the range @p [first,last) so that @p *nth
5147 * is the same element that would have been in that position had the
5148 * whole sequence been sorted. The elements either side of @p *nth are
5149 * not completely sorted, but for any iterator @i in the range
5150 * @p [first,nth) and any iterator @j in the range @p [nth,last) it
5151 * holds that @p comp(*j,*i) is false.
5153 template<typename _RandomAccessIterator
, typename _Compare
>
5155 nth_element(_RandomAccessIterator __first
, _RandomAccessIterator __nth
,
5156 _RandomAccessIterator __last
, _Compare __comp
)
5158 typedef typename iterator_traits
<_RandomAccessIterator
>::value_type
5161 // concept requirements
5162 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept
<
5163 _RandomAccessIterator
>)
5164 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
5165 _ValueType
, _ValueType
>)
5166 __glibcxx_requires_valid_range(__first
, __nth
);
5167 __glibcxx_requires_valid_range(__nth
, __last
);
5169 if (__first
== __last
|| __nth
== __last
)
5172 std::__introselect(__first
, __nth
, __last
,
5173 std::__lg(__last
- __first
) * 2, __comp
);
5178 * @brief Sort the elements of a sequence.
5179 * @ingroup sorting_algorithms
5180 * @param first An iterator.
5181 * @param last Another iterator.
5184 * Sorts the elements in the range @p [first,last) in ascending order,
5185 * such that @p *(i+1)<*i is false for each iterator @p i in the range
5186 * @p [first,last-1).
5188 * The relative ordering of equivalent elements is not preserved, use
5189 * @p stable_sort() if this is needed.
5191 template<typename _RandomAccessIterator
>
5193 sort(_RandomAccessIterator __first
, _RandomAccessIterator __last
)
5195 typedef typename iterator_traits
<_RandomAccessIterator
>::value_type
5198 // concept requirements
5199 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept
<
5200 _RandomAccessIterator
>)
5201 __glibcxx_function_requires(_LessThanComparableConcept
<_ValueType
>)
5202 __glibcxx_requires_valid_range(__first
, __last
);
5204 if (__first
!= __last
)
5206 std::__introsort_loop(__first
, __last
,
5207 std::__lg(__last
- __first
) * 2);
5208 std::__final_insertion_sort(__first
, __last
);
5213 * @brief Sort the elements of a sequence using a predicate for comparison.
5214 * @ingroup sorting_algorithms
5215 * @param first An iterator.
5216 * @param last Another iterator.
5217 * @param comp A comparison functor.
5220 * Sorts the elements in the range @p [first,last) in ascending order,
5221 * such that @p comp(*(i+1),*i) is false for every iterator @p i in the
5222 * range @p [first,last-1).
5224 * The relative ordering of equivalent elements is not preserved, use
5225 * @p stable_sort() if this is needed.
5227 template<typename _RandomAccessIterator
, typename _Compare
>
5229 sort(_RandomAccessIterator __first
, _RandomAccessIterator __last
,
5232 typedef typename iterator_traits
<_RandomAccessIterator
>::value_type
5235 // concept requirements
5236 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept
<
5237 _RandomAccessIterator
>)
5238 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
, _ValueType
,
5240 __glibcxx_requires_valid_range(__first
, __last
);
5242 if (__first
!= __last
)
5244 std::__introsort_loop(__first
, __last
,
5245 std::__lg(__last
- __first
) * 2, __comp
);
5246 std::__final_insertion_sort(__first
, __last
, __comp
);
5251 * @brief Merges two sorted ranges.
5252 * @ingroup sorting_algorithms
5253 * @param first1 An iterator.
5254 * @param first2 Another iterator.
5255 * @param last1 Another iterator.
5256 * @param last2 Another iterator.
5257 * @param result An iterator pointing to the end of the merged range.
5258 * @return An iterator pointing to the first element <em>not less
5261 * Merges the ranges [first1,last1) and [first2,last2) into the sorted range
5262 * [result, result + (last1-first1) + (last2-first2)). Both input ranges
5263 * must be sorted, and the output range must not overlap with either of
5264 * the input ranges. The sort is @e stable, that is, for equivalent
5265 * elements in the two ranges, elements from the first range will always
5266 * come before elements from the second.
5268 template<typename _InputIterator1
, typename _InputIterator2
,
5269 typename _OutputIterator
>
5271 merge(_InputIterator1 __first1
, _InputIterator1 __last1
,
5272 _InputIterator2 __first2
, _InputIterator2 __last2
,
5273 _OutputIterator __result
)
5275 typedef typename iterator_traits
<_InputIterator1
>::value_type
5277 typedef typename iterator_traits
<_InputIterator2
>::value_type
5280 // concept requirements
5281 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator1
>)
5282 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator2
>)
5283 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
5285 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
5287 __glibcxx_function_requires(_LessThanOpConcept
<_ValueType2
, _ValueType1
>)
5288 __glibcxx_requires_sorted_set(__first1
, __last1
, __first2
);
5289 __glibcxx_requires_sorted_set(__first2
, __last2
, __first1
);
5291 while (__first1
!= __last1
&& __first2
!= __last2
)
5293 if (*__first2
< *__first1
)
5295 *__result
= *__first2
;
5300 *__result
= *__first1
;
5305 return std::copy(__first2
, __last2
, std::copy(__first1
, __last1
,
5310 * @brief Merges two sorted ranges.
5311 * @ingroup sorting_algorithms
5312 * @param first1 An iterator.
5313 * @param first2 Another iterator.
5314 * @param last1 Another iterator.
5315 * @param last2 Another iterator.
5316 * @param result An iterator pointing to the end of the merged range.
5317 * @param comp A functor to use for comparisons.
5318 * @return An iterator pointing to the first element "not less
5321 * Merges the ranges [first1,last1) and [first2,last2) into the sorted range
5322 * [result, result + (last1-first1) + (last2-first2)). Both input ranges
5323 * must be sorted, and the output range must not overlap with either of
5324 * the input ranges. The sort is @e stable, that is, for equivalent
5325 * elements in the two ranges, elements from the first range will always
5326 * come before elements from the second.
5328 * The comparison function should have the same effects on ordering as
5329 * the function used for the initial sort.
5331 template<typename _InputIterator1
, typename _InputIterator2
,
5332 typename _OutputIterator
, typename _Compare
>
5334 merge(_InputIterator1 __first1
, _InputIterator1 __last1
,
5335 _InputIterator2 __first2
, _InputIterator2 __last2
,
5336 _OutputIterator __result
, _Compare __comp
)
5338 typedef typename iterator_traits
<_InputIterator1
>::value_type
5340 typedef typename iterator_traits
<_InputIterator2
>::value_type
5343 // concept requirements
5344 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator1
>)
5345 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator2
>)
5346 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
5348 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
5350 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
5351 _ValueType2
, _ValueType1
>)
5352 __glibcxx_requires_sorted_set_pred(__first1
, __last1
, __first2
, __comp
);
5353 __glibcxx_requires_sorted_set_pred(__first2
, __last2
, __first1
, __comp
);
5355 while (__first1
!= __last1
&& __first2
!= __last2
)
5357 if (__comp(*__first2
, *__first1
))
5359 *__result
= *__first2
;
5364 *__result
= *__first1
;
5369 return std::copy(__first2
, __last2
, std::copy(__first1
, __last1
,
5375 * @brief Sort the elements of a sequence, preserving the relative order
5376 * of equivalent elements.
5377 * @ingroup sorting_algorithms
5378 * @param first An iterator.
5379 * @param last Another iterator.
5382 * Sorts the elements in the range @p [first,last) in ascending order,
5383 * such that @p *(i+1)<*i is false for each iterator @p i in the range
5384 * @p [first,last-1).
5386 * The relative ordering of equivalent elements is preserved, so any two
5387 * elements @p x and @p y in the range @p [first,last) such that
5388 * @p x<y is false and @p y<x is false will have the same relative
5389 * ordering after calling @p stable_sort().
5391 template<typename _RandomAccessIterator
>
5393 stable_sort(_RandomAccessIterator __first
, _RandomAccessIterator __last
)
5395 typedef typename iterator_traits
<_RandomAccessIterator
>::value_type
5397 typedef typename iterator_traits
<_RandomAccessIterator
>::difference_type
5400 // concept requirements
5401 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept
<
5402 _RandomAccessIterator
>)
5403 __glibcxx_function_requires(_LessThanComparableConcept
<_ValueType
>)
5404 __glibcxx_requires_valid_range(__first
, __last
);
5406 _Temporary_buffer
<_RandomAccessIterator
, _ValueType
> __buf(__first
,
5408 if (__buf
.begin() == 0)
5409 std::__inplace_stable_sort(__first
, __last
);
5411 std::__stable_sort_adaptive(__first
, __last
, __buf
.begin(),
5412 _DistanceType(__buf
.size()));
5416 * @brief Sort the elements of a sequence using a predicate for comparison,
5417 * preserving the relative order of equivalent elements.
5418 * @ingroup sorting_algorithms
5419 * @param first An iterator.
5420 * @param last Another iterator.
5421 * @param comp A comparison functor.
5424 * Sorts the elements in the range @p [first,last) in ascending order,
5425 * such that @p comp(*(i+1),*i) is false for each iterator @p i in the
5426 * range @p [first,last-1).
5428 * The relative ordering of equivalent elements is preserved, so any two
5429 * elements @p x and @p y in the range @p [first,last) such that
5430 * @p comp(x,y) is false and @p comp(y,x) is false will have the same
5431 * relative ordering after calling @p stable_sort().
5433 template<typename _RandomAccessIterator
, typename _Compare
>
5435 stable_sort(_RandomAccessIterator __first
, _RandomAccessIterator __last
,
5438 typedef typename iterator_traits
<_RandomAccessIterator
>::value_type
5440 typedef typename iterator_traits
<_RandomAccessIterator
>::difference_type
5443 // concept requirements
5444 __glibcxx_function_requires(_Mutable_RandomAccessIteratorConcept
<
5445 _RandomAccessIterator
>)
5446 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
5449 __glibcxx_requires_valid_range(__first
, __last
);
5451 _Temporary_buffer
<_RandomAccessIterator
, _ValueType
> __buf(__first
,
5453 if (__buf
.begin() == 0)
5454 std::__inplace_stable_sort(__first
, __last
, __comp
);
5456 std::__stable_sort_adaptive(__first
, __last
, __buf
.begin(),
5457 _DistanceType(__buf
.size()), __comp
);
5462 * @brief Return the union of two sorted ranges.
5463 * @ingroup set_algorithms
5464 * @param first1 Start of first range.
5465 * @param last1 End of first range.
5466 * @param first2 Start of second range.
5467 * @param last2 End of second range.
5468 * @return End of the output range.
5469 * @ingroup set_algorithms
5471 * This operation iterates over both ranges, copying elements present in
5472 * each range in order to the output range. Iterators increment for each
5473 * range. When the current element of one range is less than the other,
5474 * that element is copied and the iterator advanced. If an element is
5475 * contained in both ranges, the element from the first range is copied and
5476 * both ranges advance. The output range may not overlap either input
5479 template<typename _InputIterator1
, typename _InputIterator2
,
5480 typename _OutputIterator
>
5482 set_union(_InputIterator1 __first1
, _InputIterator1 __last1
,
5483 _InputIterator2 __first2
, _InputIterator2 __last2
,
5484 _OutputIterator __result
)
5486 typedef typename iterator_traits
<_InputIterator1
>::value_type
5488 typedef typename iterator_traits
<_InputIterator2
>::value_type
5491 // concept requirements
5492 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator1
>)
5493 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator2
>)
5494 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
5496 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
5498 __glibcxx_function_requires(_LessThanOpConcept
<_ValueType1
, _ValueType2
>)
5499 __glibcxx_function_requires(_LessThanOpConcept
<_ValueType2
, _ValueType1
>)
5500 __glibcxx_requires_sorted_set(__first1
, __last1
, __first2
);
5501 __glibcxx_requires_sorted_set(__first2
, __last2
, __first1
);
5503 while (__first1
!= __last1
&& __first2
!= __last2
)
5505 if (*__first1
< *__first2
)
5507 *__result
= *__first1
;
5510 else if (*__first2
< *__first1
)
5512 *__result
= *__first2
;
5517 *__result
= *__first1
;
5523 return std::copy(__first2
, __last2
, std::copy(__first1
, __last1
,
5528 * @brief Return the union of two sorted ranges using a comparison functor.
5529 * @ingroup set_algorithms
5530 * @param first1 Start of first range.
5531 * @param last1 End of first range.
5532 * @param first2 Start of second range.
5533 * @param last2 End of second range.
5534 * @param comp The comparison functor.
5535 * @return End of the output range.
5536 * @ingroup set_algorithms
5538 * This operation iterates over both ranges, copying elements present in
5539 * each range in order to the output range. Iterators increment for each
5540 * range. When the current element of one range is less than the other
5541 * according to @a comp, that element is copied and the iterator advanced.
5542 * If an equivalent element according to @a comp is contained in both
5543 * ranges, the element from the first range is copied and both ranges
5544 * advance. The output range may not overlap either input range.
5546 template<typename _InputIterator1
, typename _InputIterator2
,
5547 typename _OutputIterator
, typename _Compare
>
5549 set_union(_InputIterator1 __first1
, _InputIterator1 __last1
,
5550 _InputIterator2 __first2
, _InputIterator2 __last2
,
5551 _OutputIterator __result
, _Compare __comp
)
5553 typedef typename iterator_traits
<_InputIterator1
>::value_type
5555 typedef typename iterator_traits
<_InputIterator2
>::value_type
5558 // concept requirements
5559 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator1
>)
5560 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator2
>)
5561 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
5563 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
5565 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
5566 _ValueType1
, _ValueType2
>)
5567 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
5568 _ValueType2
, _ValueType1
>)
5569 __glibcxx_requires_sorted_set_pred(__first1
, __last1
, __first2
, __comp
);
5570 __glibcxx_requires_sorted_set_pred(__first2
, __last2
, __first1
, __comp
);
5572 while (__first1
!= __last1
&& __first2
!= __last2
)
5574 if (__comp(*__first1
, *__first2
))
5576 *__result
= *__first1
;
5579 else if (__comp(*__first2
, *__first1
))
5581 *__result
= *__first2
;
5586 *__result
= *__first1
;
5592 return std::copy(__first2
, __last2
, std::copy(__first1
, __last1
,
5597 * @brief Return the intersection of two sorted ranges.
5598 * @ingroup set_algorithms
5599 * @param first1 Start of first range.
5600 * @param last1 End of first range.
5601 * @param first2 Start of second range.
5602 * @param last2 End of second range.
5603 * @return End of the output range.
5604 * @ingroup set_algorithms
5606 * This operation iterates over both ranges, copying elements present in
5607 * both ranges in order to the output range. Iterators increment for each
5608 * range. When the current element of one range is less than the other,
5609 * that iterator advances. If an element is contained in both ranges, the
5610 * element from the first range is copied and both ranges advance. The
5611 * output range may not overlap either input range.
5613 template<typename _InputIterator1
, typename _InputIterator2
,
5614 typename _OutputIterator
>
5616 set_intersection(_InputIterator1 __first1
, _InputIterator1 __last1
,
5617 _InputIterator2 __first2
, _InputIterator2 __last2
,
5618 _OutputIterator __result
)
5620 typedef typename iterator_traits
<_InputIterator1
>::value_type
5622 typedef typename iterator_traits
<_InputIterator2
>::value_type
5625 // concept requirements
5626 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator1
>)
5627 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator2
>)
5628 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
5630 __glibcxx_function_requires(_LessThanOpConcept
<_ValueType1
, _ValueType2
>)
5631 __glibcxx_function_requires(_LessThanOpConcept
<_ValueType2
, _ValueType1
>)
5632 __glibcxx_requires_sorted_set(__first1
, __last1
, __first2
);
5633 __glibcxx_requires_sorted_set(__first2
, __last2
, __first1
);
5635 while (__first1
!= __last1
&& __first2
!= __last2
)
5636 if (*__first1
< *__first2
)
5638 else if (*__first2
< *__first1
)
5642 *__result
= *__first1
;
5651 * @brief Return the intersection of two sorted ranges using comparison
5653 * @ingroup set_algorithms
5654 * @param first1 Start of first range.
5655 * @param last1 End of first range.
5656 * @param first2 Start of second range.
5657 * @param last2 End of second range.
5658 * @param comp The comparison functor.
5659 * @return End of the output range.
5660 * @ingroup set_algorithms
5662 * This operation iterates over both ranges, copying elements present in
5663 * both ranges in order to the output range. Iterators increment for each
5664 * range. When the current element of one range is less than the other
5665 * according to @a comp, that iterator advances. If an element is
5666 * contained in both ranges according to @a comp, the element from the
5667 * first range is copied and both ranges advance. The output range may not
5668 * overlap either input range.
5670 template<typename _InputIterator1
, typename _InputIterator2
,
5671 typename _OutputIterator
, typename _Compare
>
5673 set_intersection(_InputIterator1 __first1
, _InputIterator1 __last1
,
5674 _InputIterator2 __first2
, _InputIterator2 __last2
,
5675 _OutputIterator __result
, _Compare __comp
)
5677 typedef typename iterator_traits
<_InputIterator1
>::value_type
5679 typedef typename iterator_traits
<_InputIterator2
>::value_type
5682 // concept requirements
5683 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator1
>)
5684 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator2
>)
5685 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
5687 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
5688 _ValueType1
, _ValueType2
>)
5689 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
5690 _ValueType2
, _ValueType1
>)
5691 __glibcxx_requires_sorted_set_pred(__first1
, __last1
, __first2
, __comp
);
5692 __glibcxx_requires_sorted_set_pred(__first2
, __last2
, __first1
, __comp
);
5694 while (__first1
!= __last1
&& __first2
!= __last2
)
5695 if (__comp(*__first1
, *__first2
))
5697 else if (__comp(*__first2
, *__first1
))
5701 *__result
= *__first1
;
5710 * @brief Return the difference of two sorted ranges.
5711 * @ingroup set_algorithms
5712 * @param first1 Start of first range.
5713 * @param last1 End of first range.
5714 * @param first2 Start of second range.
5715 * @param last2 End of second range.
5716 * @return End of the output range.
5717 * @ingroup set_algorithms
5719 * This operation iterates over both ranges, copying elements present in
5720 * the first range but not the second in order to the output range.
5721 * Iterators increment for each range. When the current element of the
5722 * first range is less than the second, that element is copied and the
5723 * iterator advances. If the current element of the second range is less,
5724 * the iterator advances, but no element is copied. If an element is
5725 * contained in both ranges, no elements are copied and both ranges
5726 * advance. The output range may not overlap either input range.
5728 template<typename _InputIterator1
, typename _InputIterator2
,
5729 typename _OutputIterator
>
5731 set_difference(_InputIterator1 __first1
, _InputIterator1 __last1
,
5732 _InputIterator2 __first2
, _InputIterator2 __last2
,
5733 _OutputIterator __result
)
5735 typedef typename iterator_traits
<_InputIterator1
>::value_type
5737 typedef typename iterator_traits
<_InputIterator2
>::value_type
5740 // concept requirements
5741 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator1
>)
5742 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator2
>)
5743 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
5745 __glibcxx_function_requires(_LessThanOpConcept
<_ValueType1
, _ValueType2
>)
5746 __glibcxx_function_requires(_LessThanOpConcept
<_ValueType2
, _ValueType1
>)
5747 __glibcxx_requires_sorted_set(__first1
, __last1
, __first2
);
5748 __glibcxx_requires_sorted_set(__first2
, __last2
, __first1
);
5750 while (__first1
!= __last1
&& __first2
!= __last2
)
5751 if (*__first1
< *__first2
)
5753 *__result
= *__first1
;
5757 else if (*__first2
< *__first1
)
5764 return std::copy(__first1
, __last1
, __result
);
5768 * @brief Return the difference of two sorted ranges using comparison
5770 * @ingroup set_algorithms
5771 * @param first1 Start of first range.
5772 * @param last1 End of first range.
5773 * @param first2 Start of second range.
5774 * @param last2 End of second range.
5775 * @param comp The comparison functor.
5776 * @return End of the output range.
5777 * @ingroup set_algorithms
5779 * This operation iterates over both ranges, copying elements present in
5780 * the first range but not the second in order to the output range.
5781 * Iterators increment for each range. When the current element of the
5782 * first range is less than the second according to @a comp, that element
5783 * is copied and the iterator advances. If the current element of the
5784 * second range is less, no element is copied and the iterator advances.
5785 * If an element is contained in both ranges according to @a comp, no
5786 * elements are copied and both ranges advance. The output range may not
5787 * overlap either input range.
5789 template<typename _InputIterator1
, typename _InputIterator2
,
5790 typename _OutputIterator
, typename _Compare
>
5792 set_difference(_InputIterator1 __first1
, _InputIterator1 __last1
,
5793 _InputIterator2 __first2
, _InputIterator2 __last2
,
5794 _OutputIterator __result
, _Compare __comp
)
5796 typedef typename iterator_traits
<_InputIterator1
>::value_type
5798 typedef typename iterator_traits
<_InputIterator2
>::value_type
5801 // concept requirements
5802 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator1
>)
5803 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator2
>)
5804 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
5806 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
5807 _ValueType1
, _ValueType2
>)
5808 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
5809 _ValueType2
, _ValueType1
>)
5810 __glibcxx_requires_sorted_set_pred(__first1
, __last1
, __first2
, __comp
);
5811 __glibcxx_requires_sorted_set_pred(__first2
, __last2
, __first1
, __comp
);
5813 while (__first1
!= __last1
&& __first2
!= __last2
)
5814 if (__comp(*__first1
, *__first2
))
5816 *__result
= *__first1
;
5820 else if (__comp(*__first2
, *__first1
))
5827 return std::copy(__first1
, __last1
, __result
);
5831 * @brief Return the symmetric difference of two sorted ranges.
5832 * @ingroup set_algorithms
5833 * @param first1 Start of first range.
5834 * @param last1 End of first range.
5835 * @param first2 Start of second range.
5836 * @param last2 End of second range.
5837 * @return End of the output range.
5838 * @ingroup set_algorithms
5840 * This operation iterates over both ranges, copying elements present in
5841 * one range but not the other in order to the output range. Iterators
5842 * increment for each range. When the current element of one range is less
5843 * than the other, that element is copied and the iterator advances. If an
5844 * element is contained in both ranges, no elements are copied and both
5845 * ranges advance. The output range may not overlap either input range.
5847 template<typename _InputIterator1
, typename _InputIterator2
,
5848 typename _OutputIterator
>
5850 set_symmetric_difference(_InputIterator1 __first1
, _InputIterator1 __last1
,
5851 _InputIterator2 __first2
, _InputIterator2 __last2
,
5852 _OutputIterator __result
)
5854 typedef typename iterator_traits
<_InputIterator1
>::value_type
5856 typedef typename iterator_traits
<_InputIterator2
>::value_type
5859 // concept requirements
5860 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator1
>)
5861 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator2
>)
5862 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
5864 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
5866 __glibcxx_function_requires(_LessThanOpConcept
<_ValueType1
, _ValueType2
>)
5867 __glibcxx_function_requires(_LessThanOpConcept
<_ValueType2
, _ValueType1
>)
5868 __glibcxx_requires_sorted_set(__first1
, __last1
, __first2
);
5869 __glibcxx_requires_sorted_set(__first2
, __last2
, __first1
);
5871 while (__first1
!= __last1
&& __first2
!= __last2
)
5872 if (*__first1
< *__first2
)
5874 *__result
= *__first1
;
5878 else if (*__first2
< *__first1
)
5880 *__result
= *__first2
;
5889 return std::copy(__first2
, __last2
, std::copy(__first1
,
5890 __last1
, __result
));
5894 * @brief Return the symmetric difference of two sorted ranges using
5895 * comparison functor.
5896 * @ingroup set_algorithms
5897 * @param first1 Start of first range.
5898 * @param last1 End of first range.
5899 * @param first2 Start of second range.
5900 * @param last2 End of second range.
5901 * @param comp The comparison functor.
5902 * @return End of the output range.
5903 * @ingroup set_algorithms
5905 * This operation iterates over both ranges, copying elements present in
5906 * one range but not the other in order to the output range. Iterators
5907 * increment for each range. When the current element of one range is less
5908 * than the other according to @a comp, that element is copied and the
5909 * iterator advances. If an element is contained in both ranges according
5910 * to @a comp, no elements are copied and both ranges advance. The output
5911 * range may not overlap either input range.
5913 template<typename _InputIterator1
, typename _InputIterator2
,
5914 typename _OutputIterator
, typename _Compare
>
5916 set_symmetric_difference(_InputIterator1 __first1
, _InputIterator1 __last1
,
5917 _InputIterator2 __first2
, _InputIterator2 __last2
,
5918 _OutputIterator __result
,
5921 typedef typename iterator_traits
<_InputIterator1
>::value_type
5923 typedef typename iterator_traits
<_InputIterator2
>::value_type
5926 // concept requirements
5927 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator1
>)
5928 __glibcxx_function_requires(_InputIteratorConcept
<_InputIterator2
>)
5929 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
5931 __glibcxx_function_requires(_OutputIteratorConcept
<_OutputIterator
,
5933 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
5934 _ValueType1
, _ValueType2
>)
5935 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
5936 _ValueType2
, _ValueType1
>)
5937 __glibcxx_requires_sorted_set_pred(__first1
, __last1
, __first2
, __comp
);
5938 __glibcxx_requires_sorted_set_pred(__first2
, __last2
, __first1
, __comp
);
5940 while (__first1
!= __last1
&& __first2
!= __last2
)
5941 if (__comp(*__first1
, *__first2
))
5943 *__result
= *__first1
;
5947 else if (__comp(*__first2
, *__first1
))
5949 *__result
= *__first2
;
5958 return std::copy(__first2
, __last2
,
5959 std::copy(__first1
, __last1
, __result
));
5964 * @brief Return the minimum element in a range.
5965 * @ingroup sorting_algorithms
5966 * @param first Start of range.
5967 * @param last End of range.
5968 * @return Iterator referencing the first instance of the smallest value.
5970 template<typename _ForwardIterator
>
5972 min_element(_ForwardIterator __first
, _ForwardIterator __last
)
5974 // concept requirements
5975 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
5976 __glibcxx_function_requires(_LessThanComparableConcept
<
5977 typename iterator_traits
<_ForwardIterator
>::value_type
>)
5978 __glibcxx_requires_valid_range(__first
, __last
);
5980 if (__first
== __last
)
5982 _ForwardIterator __result
= __first
;
5983 while (++__first
!= __last
)
5984 if (*__first
< *__result
)
5990 * @brief Return the minimum element in a range using comparison functor.
5991 * @ingroup sorting_algorithms
5992 * @param first Start of range.
5993 * @param last End of range.
5994 * @param comp Comparison functor.
5995 * @return Iterator referencing the first instance of the smallest value
5996 * according to comp.
5998 template<typename _ForwardIterator
, typename _Compare
>
6000 min_element(_ForwardIterator __first
, _ForwardIterator __last
,
6003 // concept requirements
6004 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
6005 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
6006 typename iterator_traits
<_ForwardIterator
>::value_type
,
6007 typename iterator_traits
<_ForwardIterator
>::value_type
>)
6008 __glibcxx_requires_valid_range(__first
, __last
);
6010 if (__first
== __last
)
6012 _ForwardIterator __result
= __first
;
6013 while (++__first
!= __last
)
6014 if (__comp(*__first
, *__result
))
6020 * @brief Return the maximum element in a range.
6021 * @ingroup sorting_algorithms
6022 * @param first Start of range.
6023 * @param last End of range.
6024 * @return Iterator referencing the first instance of the largest value.
6026 template<typename _ForwardIterator
>
6028 max_element(_ForwardIterator __first
, _ForwardIterator __last
)
6030 // concept requirements
6031 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
6032 __glibcxx_function_requires(_LessThanComparableConcept
<
6033 typename iterator_traits
<_ForwardIterator
>::value_type
>)
6034 __glibcxx_requires_valid_range(__first
, __last
);
6036 if (__first
== __last
)
6038 _ForwardIterator __result
= __first
;
6039 while (++__first
!= __last
)
6040 if (*__result
< *__first
)
6046 * @brief Return the maximum element in a range using comparison functor.
6047 * @ingroup sorting_algorithms
6048 * @param first Start of range.
6049 * @param last End of range.
6050 * @param comp Comparison functor.
6051 * @return Iterator referencing the first instance of the largest value
6052 * according to comp.
6054 template<typename _ForwardIterator
, typename _Compare
>
6056 max_element(_ForwardIterator __first
, _ForwardIterator __last
,
6059 // concept requirements
6060 __glibcxx_function_requires(_ForwardIteratorConcept
<_ForwardIterator
>)
6061 __glibcxx_function_requires(_BinaryPredicateConcept
<_Compare
,
6062 typename iterator_traits
<_ForwardIterator
>::value_type
,
6063 typename iterator_traits
<_ForwardIterator
>::value_type
>)
6064 __glibcxx_requires_valid_range(__first
, __last
);
6066 if (__first
== __last
) return __first
;
6067 _ForwardIterator __result
= __first
;
6068 while (++__first
!= __last
)
6069 if (__comp(*__result
, *__first
))
6074 _GLIBCXX_END_NESTED_NAMESPACE
6076 #endif /* _STL_ALGO_H */