gather.hpp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*
  2. Copyright 2008 Adobe Systems Incorporated
  3. Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. Revision history:
  6. January 2008 mtc Version for Adobe Source Library
  7. January 2013 mtc Version for Boost.Algorithm
  8. */
  9. /**************************************************************************************************/
  10. /*!
  11. \author Marshall Clow
  12. \date January 2008
  13. */
  14. #ifndef BOOST_ALGORITHM_GATHER_HPP
  15. #define BOOST_ALGORITHM_GATHER_HPP
  16. #include <algorithm> // for std::stable_partition
  17. #include <functional>
  18. #include <boost/bind.hpp> // for boost::bind
  19. #include <boost/range/begin.hpp> // for boost::begin(range)
  20. #include <boost/range/end.hpp> // for boost::end(range)
  21. /**************************************************************************************************/
  22. /*!
  23. \defgroup gather gather
  24. \ingroup mutating_algorithm
  25. \c gather() takes a collection of elements defined by a pair of iterators and moves
  26. the ones satisfying a predicate to them to a position (called the pivot) within
  27. the sequence. The algorithm is stable. The result is a pair of iterators that
  28. contains the items that satisfy the predicate.
  29. Given an sequence containing:
  30. <pre>
  31. 0 1 2 3 4 5 6 7 8 9
  32. </pre>
  33. a call to gather ( arr, arr + 10, arr + 4, IsEven ()) will result in:
  34. <pre>
  35. 1 3 0 2 4 6 8 5 7 9
  36. |---|-----|
  37. first | second
  38. pivot
  39. </pre>
  40. The problem is broken down into two basic steps, namely, moving the items before the pivot
  41. and then moving the items from the pivot to the end. These "moves" are done with calls to
  42. stable_partition.
  43. \par Storage Requirements:
  44. The algorithm uses stable_partition, which will attempt to allocate temporary memory,
  45. but will work in-situ if there is none available.
  46. \par Time Complexity:
  47. If there is sufficient memory available, the run time is linear in <code>N</code>.
  48. If there is not any memory available, then the run time is <code>O(N log N)</code>.
  49. */
  50. /**************************************************************************************************/
  51. namespace boost { namespace algorithm {
  52. /**************************************************************************************************/
  53. /*!
  54. \ingroup gather
  55. \brief iterator-based gather implementation
  56. */
  57. template <
  58. typename BidirectionalIterator, // Iter models BidirectionalIterator
  59. typename Pred> // Pred models UnaryPredicate
  60. std::pair<BidirectionalIterator, BidirectionalIterator> gather
  61. ( BidirectionalIterator first, BidirectionalIterator last, BidirectionalIterator pivot, Pred pred )
  62. {
  63. // The first call partitions everything up to (but not including) the pivot element,
  64. // while the second call partitions the rest of the sequence.
  65. return std::make_pair (
  66. std::stable_partition ( first, pivot, !boost::bind<bool> ( pred, _1 )),
  67. std::stable_partition ( pivot, last, boost::bind<bool> ( pred, _1 )));
  68. }
  69. /**************************************************************************************************/
  70. /*!
  71. \ingroup gather
  72. \brief range-based gather implementation
  73. */
  74. template <
  75. typename BidirectionalRange, //
  76. typename Pred> // Pred models UnaryPredicate
  77. std::pair<
  78. typename boost::range_iterator<const BidirectionalRange>::type,
  79. typename boost::range_iterator<const BidirectionalRange>::type>
  80. gather (
  81. const BidirectionalRange &range,
  82. typename boost::range_iterator<const BidirectionalRange>::type pivot,
  83. Pred pred )
  84. {
  85. return boost::algorithm::gather ( boost::begin ( range ), boost::end ( range ), pivot, pred );
  86. }
  87. /**************************************************************************************************/
  88. }} // namespace
  89. /**************************************************************************************************/
  90. #endif