Namespaces
Variants

std::ranges:: min

From cppreference.net
Algorithm library
Constrained algorithms and algorithms on ranges (C++20)
Constrained algorithms, e.g. ranges::copy , ranges::sort , ...
Execution policies (C++17)
Non-modifying sequence operations
Batch operations
(C++17)
Search operations
Modifying sequence operations
Copy operations
(C++11)
(C++11)
Swap operations
Transformation operations
Generation operations
Removing operations
Order-changing operations
(until C++17) (C++11)
(C++20) (C++20)
Sampling operations
(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
Lexicographical comparison operations
Permutation operations
C library
Numeric operations
Operations on uninitialized memory
Constrained algorithms
All names in this menu belong to namespace std::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
헤더에 정의됨 <algorithm>
호출 시그니처
template < class T, class Proj = std:: identity ,

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

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

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

min ( 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:: range_value_t < R >

min ( R && r, Comp comp = { } , Proj proj = { } ) ;
(3) (C++20 이후)

주어진 투영된 요소 중 더 작은 값을 반환합니다.

1) a b 중 더 작은 값을 반환합니다.
2) 초기화 리스트에서 첫 번째로 가장 작은 요소를 반환합니다 r .
3) 범위 내 첫 번째 가장 작은 값을 반환합니다 r .

이 페이지에서 설명하는 함수형 개체들은 algorithm function objects (일반적으로 niebloids 로 알려진)입니다. 즉:

목차

매개변수

a, b - 비교할 값
r - 비교할 값의 범위
comp - 투영된 요소에 적용할 비교 연산
proj - 요소에 적용할 투영

반환값

1) 투영에 따라 a b 중 더 작은 값. 동등할 경우 a 를 반환합니다.
2,3) 투영에 따라 r 에서 가장 작은 요소. 여러 값이 가장 작은 값과 동등한 경우, 가장 왼쪽 값을 반환합니다. 범위가 비어 있는 경우( ranges:: distance ( r ) 로 결정됨), 동작은 정의되지 않습니다.

복잡도

1) 정확히 한 번의 비교.
2,3) 정확히 ranges:: distance ( r ) - 1 번의 비교를 수행합니다.

가능한 구현

struct min_fn
{
    template<class T, class Proj = std::identity,
             std::indirect_strict_weak_order<
                 std::projected<const T*, Proj>> Comp = ranges::less>
    constexpr
    const T& operator()(const T& a, const T& b, Comp comp = {}, Proj proj = {}) const
    {
        return std::invoke(comp, std::invoke(proj, b), std::invoke(proj, a)) ? b : a;
    }
    template<std::copyable T, class Proj = std::identity,
             std::indirect_strict_weak_order<
                 std::projected<const T*, Proj>> Comp = ranges::less>
    constexpr
    T operator()(std::initializer_list<T> r, Comp comp = {}, Proj proj = {}) const
    {
        return *ranges::min_element(r, std::ref(comp), std::ref(proj));
    }
    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::range_value_t<R> operator()(R&& r, Comp comp = {}, Proj proj = {}) const
    {
        using V = ranges::range_value_t<R>;
        if constexpr (ranges::forward_range<R>)
            return
                static_cast<V>(*ranges::min_element(r, std::ref(comp), std::ref(proj)));
        else
        {
            auto i = ranges::begin(r);
            auto s = ranges::end(r);
            V m(*i);
            while (++i != s)
                if (std::invoke(comp, std::invoke(proj, *i), std::invoke(proj, m)))
                    m = *i;
            return m;
        }
    }
};
inline constexpr min_fn min;

참고 사항

std::ranges::min 의 결과를 참조로 캡처할 때, 매개변수 중 하나가 임시 객체이고 해당 매개변수가 반환되면 댕글링 참조가 발생합니다:

int n = -1;
const int& r = std::ranges::min(n + 2, n * 2); // r은 댕글링 참조입니다

예제

#include <algorithm>
#include <iostream>
#include <string>
int main()
{
    namespace ranges = std::ranges;
    using namespace std::string_view_literals;
    std::cout << "smaller of 1 and 9999: " << ranges::min(1, 9999) << '\n'
              << "smaller of 'a', and 'b': '" << ranges::min('a', 'b') << "'\n"
              << "shortest of \"foo\", \"bar\", and \"hello\": \""
              << ranges::min({"foo"sv, "bar"sv, "hello"sv}, {},
                             &std::string_view::size) << "\"\n";
}

출력:

smaller of 1 and 9999: 1
smaller of 'a', and 'b': 'a'
shortest of "foo", "bar", and "hello": "foo"

참고 항목

주어진 값 중 더 큰 값을 반환합니다
(알고리즘 함수 객체)
두 요소 중 더 작은 값과 더 큰 값을 반환합니다
(알고리즘 함수 객체)
범위 내에서 가장 작은 요소를 반환합니다
(알고리즘 함수 객체)
값을 한 쌍의 경계 값 사이로 고정합니다
(알고리즘 함수 객체)
주어진 값 중 더 작은 값을 반환합니다
(함수 템플릿)