CppDS.com

C++ 98 11 14 17 20 手册

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

来自cppreference.com
< cpp‎ | algorithm‎ | ranges
 
 
算法库
有制约算法及范围上的算法 (C++20)
有制约算法: std::ranges::copy, std::ranges::sort, ...
执行策略 (C++17)
不修改序列的操作
(C++11)(C++11)(C++11)
(C++17)
修改序列的操作
未初始化存储上的操作
划分操作
排序操作
(C++11)
二分搜索操作
集合操作(在已排序范围上)
堆操作
(C++11)
最小/最大操作
(C++11)
(C++17)

排列
数值运算
C 库
 
有制约算法
不修改序列的操作
修改序列的操作
未初始化存储上的操作
划分操作
排序操作
二分搜索操作
集合操作(在已排序范围上)
堆操作
最小/最大操作
ranges::minmax
排列
 
定义于头文件 <algorithm>
调用签名
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) (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) (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) (C++20 起)
辅助类型
template< class T >
using minmax_result = ranges::min_max_result<T>;
(4) (C++20 起)

返回给定的投影后值的最小者与最大者。

1) 返回 ab 的较小者与较大者的引用。
2) 返回 initializer_list r 中的最小与最大值。
3) 返回范围 r 中的最小与最大值。

此页面上描述的仿函数实体是 niebloid ,即:

实际上,它们能以函数对象,或以某些特殊编译器扩展实现。

Parameters

a, b - 要比较的值
r - 要比较的非空的值范围
comp - 应用到投影后元素的值
proj - 应用到元素的投影

返回值

1) 若按照被投影值 b 小于 a ,则为 {b, a} ;否则返回 {a, b} 。
2-3) {s, l} ,其中 sl 分别为 r 中分别按照其被投影值的的最小与最大值。若数个值等价于最小与最大,则返回最左的最小值与最右的最大值。若范围为空(由 ranges::distance(r) 确定)则行为未定义。

复杂度

1) 至多比较一次并投影二次。
2-3) 至多比较 3 / 2 * ranges::distance(r) 次并且应用两倍次数的投影。

可能的实现

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;

注解

对于重载 (1,2) ,若参数之一为临时量,则返回的引用在含有对 minmax 的该调用的完全表达式结束后变为悬垂引用。

int n = 1;
auto p = ranges::minmax(n, n+1);
int m = p.first; // ok
int x = p.second; // 未定义行为

示例

#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';
}

可能的输出:

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

参阅

返回给定值的较小者
(niebloid)
返回给定值的较大者
(niebloid)
返回范围中的最小和最大元素
(niebloid)
在一对边界值间夹一个值
(niebloid)
(C++11)
返回两个元素的较小和较大者
(函数模板)
关闭