std::ranges::minmax, std::ranges::minmax_result

From cppreference.com
< cpp‎ | algorithm‎ | ranges
 
 
Algorithm library
Constrained algorithms and algorithms on ranges (C++20)
Constrained algorithms: std::ranges::copy, std::ranges::sort, ...
Execution policies (C++17)
Non-modifying sequence operations
(C++11)(C++11)(C++11)
(C++17)
Modifying sequence operations
Operations on uninitialized storage
Partitioning operations
Sorting operations
(C++11)
Binary search operations
Set operations (on sorted ranges)
Heap operations
(C++11)
Minimum/maximum operations
(C++11)
(C++17)

Permutations
Numeric operations
C library
 
Constrained algorithms
Non-modifying sequence operations
Modifying sequence operations
Operations on uninitialized storage
Partitioning operations
Sorting operations
Binary search operations
Set operations (on sorted ranges)
Heap operations
Minimum/maximum operations
ranges::minmax
Permutations
 
Defined in header <algorithm>
Call signature
template< class T, class Proj = std::identity,

          std::indirect_strict_weak_order<
              std::projected<const T*, Proj>> Comp = ranges::less >
constexpr ranges::minmax_result<const T&>

minmax( const T& a, const T& b, Comp comp = {}, Proj proj = {} );
(1) (since C++20)
template< class T, class Proj = std::identity,

          std::indirect_strict_weak_order<
              std::projected<const T*, Proj>> Comp = ranges::less >
constexpr ranges::minmax_result<const T&>

minmax( std::initializer_list<T> r, Comp comp = {}, Proj proj = {} );
(2) (since C++20)
template< ranges::input_range R, class Proj = std::identity,

          std::indirect_strict_weak_order<
              std::projected<ranges::iterator_t<R>, Proj>> Comp = ranges::less >
requires std::indirectly_copyable_storable<ranges::iterator_t<R>, ranges::range_value_t<R>*>
constexpr ranges::minmax_result<ranges::range_value_t<R>>

minmax( R&& r, Comp comp = {}, Proj proj = {} );
(3) (since C++20)
Helper types
template< class T >
using minmax_result = ranges::min_max_result<T>;
(4) (since C++20)

Returns the smallest and the greatest of the given projected values.

1) Returns references to the smaller and the greater of a and b.
2) Returns the smallest and the greatest of the values in the initializer list r.
3) Returns the smallest and the greatest of the values in the range r.

The function-like entities described on this page are niebloids, that is:

In practice, they may be implemented as function objects, or with special compiler extensions.

Parameters

a, b - the values to compare
r - a non-empty range of values to compare
comp - comparison to apply to the projected elements
proj - projection to apply to the elements

Return value

1) {b, a} if, according to their respective projected value, b is smaller than a; otherwise it returns {a, b}.
2-3) {s, l}, where s and l are respectively the smallest and largest values in r, according to their projected value. If several values are equivalent to the smallest and largest, returns the leftmost smallest value, and the rightmost largest value. If the range is empty (as determined by ranges::distance(r)), the behavior is undefined.

Complexity

1) Exactly one comparison and two applications of the projection.
2-3) At most 3 / 2 * ranges::distance(r) comparisons and twice as many applications of the projection.

Possible implementation

struct minmax_fn {
  template<class T, class Proj = std::identity,
           std::indirect_strict_weak_order<
               std::projected<const T*, Proj>> Comp = ranges::less>
  constexpr ranges::minmax_result<const T&> operator()(
      const T& a, const T& b, Comp comp = {}, Proj proj = {}) const
  {
      if (std::invoke(comp, std::invoke(proj, b), std::invoke(proj, a))) {
          return {b, a};
      }
 
      return {a, b};
  }
 
  template<class T, class Proj = std::identity,
           std::indirect_strict_weak_order<
               std::projected<const T*, Proj>> Comp = ranges::less>
  constexpr ranges::minmax_result<const T&> operator()(
      std::initializer_list<T> r, Comp comp = {}, Proj proj = {}) const
  {
    auto result = ranges::minmax_element(r, std::ref(comp), std::ref(proj));
    return {std::move(*result.min), std::move(*result.max)};
  }
 
  template<ranges::input_range R, class Proj = std::identity,
           std::indirect_strict_weak_order<
                std::projected<ranges::iterator_t<R>, Proj>> Comp = ranges::less>
  requires std::indirectly_copyable_storable<ranges::iterator_t<R>,
                                             ranges::range_value_t<R>*>
  constexpr ranges::minmax_result<ranges::range_value_t<R>> operator()(
      R&& r, Comp comp = {}, Proj proj = {}) const
  {
      auto result = ranges::minmax_element(r, std::ref(comp), std::ref(proj));
      return {std::move(*result.min), std::move(*result.max)};
  }
};
 
inline constexpr minmax_fn minmax;

Notes

For overloads (1,2), if one of the parameters is a temporary, the reference returned becomes a dangling reference at the end of the full expression that contains the call to minmax:

int n = 1;
auto p = ranges::minmax(n, n+1);
int m = p.first; // ok
int x = p.second; // undefined behavior

Example

#include <algorithm>
#include <iostream>
#include <random>
#include <vector>
 
int main()
{
    std::vector<int> v{3, 1, 4, 9, 1, 5, 9, 2, 6};
    std::mt19937_64 generator;
    namespace ranges = std::ranges;
    std::uniform_int_distribution<> distribution(0, ranges::distance(v));
 
    auto bounds = ranges::minmax(distribution(generator), distribution(generator));
 
    std::cout << "v[" << bounds.min << ":" << bounds.max << "]: ";
    for (int i = bounds.min; i < bounds.max; ++i) {
        std::cout << v[i] << ' ';
    }
 
    std::cout << '\n';
 
    auto [min, max] = ranges::minmax(v);
    std::cout << "smallest: " << min << '\n'
              << "largest: " << max << '\n';
}

Possible output:

v[2:7]: 4 9 1 5 9
smallest: 1
largest: 9

See also

returns the smaller of the given values
(niebloid)
returns the greater of the given values
(niebloid)
returns the smallest and the largest elements in a range
(niebloid)
clamps a value between a pair of boundary values
(niebloid)
(C++11)
returns the smaller and larger of two elements
(function template)