Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::ranges::is_partitioned

      From cppreference.com
      <cpp‎ |algorithm‎ |ranges
       
       
      Algorithm library
      Constrained algorithms and algorithms on ranges(C++20)
      Constrained algorithms, e.g.ranges::copy,ranges::sort, ...
      Execution policies(C++17)
      Sorting and related operations
      Partitioning operations
      Sorting operations
      Binary search operations
      (on partitioned ranges)
      Set operations (on sorted ranges)
      Merge operations (on sorted ranges)
      Heap operations
      Minimum/maximum operations
      (C++11)
      (C++17)
      Lexicographical comparison operations
      Permutation operations
      C library
      Numeric operations
      Operations on uninitialized memory
       
      Constrained algorithms
      All names in this menu belong to namespacestd::ranges
      Non-modifying sequence operations
      Modifying sequence operations
      Partitioning operations
      Sorting operations
      Binary search operations (on sorted ranges)
             
             
      Set operations (on sorted ranges)
      Heap operations
      Minimum/maximum operations
      Permutation operations
      Fold operations
      Operations on uninitialized storage
      Return types
       
      Defined in header<algorithm>
      Call signature
      template<std::input_iterator I,std::sentinel_for<I> S,

               class Proj=std::identity,
               std::indirect_unary_predicate<std::projected<I, Proj>> Pred>
      constexprbool

          is_partitioned( I first, S last, Pred pred, Proj proj={});
      (1)(since C++20)
      template<ranges::input_range R,class Proj=std::identity,

               std::indirect_unary_predicate<
                    std::projected<ranges::iterator_t<R>, Proj>> Pred>
      constexprbool

          is_partitioned( R&& r, Pred pred, Proj proj={});
      (2)(since C++20)
      1) Returnstrue if all elements in the range[firstlast) that satisfy the predicatepred after projection appear before all elements that don't. Also returnstrue if[firstlast) is empty.
      2) Same as(1), but usesr as the source range, as if usingranges::begin(r) asfirst andranges::end(r) aslast.

      The function-like entities described on this page arealgorithm function objects (informally known asniebloids), that is:

      Contents

      [edit]Parameters

      first, last - the iterator-sentinel pair defining therange of elements to examine
      r - the range of elements to examine
      pred - predicate to apply to the projected elements
      proj - projection to apply to the elements

      [edit]Return value

      true if the range[firstlast) is empty or is partitioned bypred,false otherwise.

      [edit]Complexity

      At mostranges::distance(first, last) applications ofpred andproj.

      [edit]Possible implementation

      struct is_partitioned_fn{template<std::input_iterator I,std::sentinel_for<I> S,class Proj=std::identity,std::indirect_unary_predicate<std::projected<I, Proj>> Pred>constexprbool operator()(I first, S last, Pred pred, Proj proj={})const{for(; first!= last;++first)if(!std::invoke(pred,std::invoke(proj,*first)))break; for(; first!= last;++first)if(std::invoke(pred,std::invoke(proj,*first)))returnfalse; returntrue;} template<ranges::input_range R,class Proj=std::identity,std::indirect_unary_predicate<std::projected<ranges::iterator_t<R>, Proj>> Pred>constexprbool operator()(R&& r, Pred pred, Proj proj={})const{return(*this)(ranges::begin(r),ranges::end(r),std::ref(pred),std::ref(proj));}}; inlineconstexprauto is_partitioned= is_partitioned_fn();

      [edit]Example

      Run this code
      #include <algorithm>#include <array>#include <iostream>#include <numeric>#include <utility> int main(){std::array<int,9> v; auto print=[&v](bool o){for(int x: v)std::cout<< x<<' ';std::cout<<(o?"=> ":"=> not ")<<"partitioned\n";}; auto is_even=[](int i){return i%2==0;}; std::iota(v.begin(), v.end(),1);// or std::ranges::iota(v, 1);    print(std::ranges::is_partitioned(v, is_even));     std::ranges::partition(v, is_even);    print(std::ranges::is_partitioned(std::as_const(v), is_even));     std::ranges::reverse(v);    print(std::ranges::is_partitioned(v.cbegin(), v.cend(), is_even));    print(std::ranges::is_partitioned(v.crbegin(), v.crend(), is_even));}

      Output:

      1 2 3 4 5 6 7 8 9 => not partitioned2 4 6 8 5 3 7 1 9 => partitioned9 1 7 3 5 8 6 4 2 => not partitioned9 1 7 3 5 8 6 4 2 => partitioned

      [edit]See also

      divides a range of elements into two groups
      (algorithm function object)[edit]
      locates the partition point of a partitioned range
      (algorithm function object)[edit]
      determines if the range is partitioned by the given predicate
      (function template)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/algorithm/ranges/is_partitioned&oldid=180529"

      [8]ページ先頭

      ©2009-2025 Movatter.jp