当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ std::min_element()用法及代码示例


C++ STL std::min_element() 函数

min_element() 函数是算法头的库函数,用于从范围中寻找最小的元素,它接受一个容器范围[开始,结束],并返回一个指向给定范围内具有最小值的元素的迭代器。

此外,它可以接受一个函数作为第三个参数,该函数将对所有元素执行条件检查。

注意:使用 min_element() 函数 - 包括<algorithm>标题或者您可以简单使用<bits/stdc++.h>头文件。

std::min_element() 函数的语法

    std::min_element(iterator start, iterator end, [compare comp]);

参数:

  • iterator start, iterator end- 这些是指向容器中范围的迭代器位置。
  • [compare comp]- 它是一个可选参数(一个函数),用于与给定范围内的元素进行比较。

返回值: iterator- 它返回一个迭代器,指向给定范围内具有最小值的元素。

例:

    Input:
    int arr[] = { 100, 200, -100, 300, 400 };
    
    //finding smallest element
    int result = *min_element(arr + 0, arr + 5);
    cout << result << endl;
    
    Output:
    -100

用于演示 std::min_element() 函数使用的 C++ STL 程序

在这个程序中,我们有一个数组和一个向量并找到它们的最小元素。

//C++ STL program to demonstrate use of 
//std::min_element() function
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;

int main()
{
    //an array
    int arr[] = { 100, 200, -100, 300, 400 };

    //a vector
    vector<int> v1{ 10, 20, 30, 40, 50 };

    //finding smallest element from the array
    int result = *min_element(arr + 0, arr + 5);
    cout << "smallest element of the array:" << result << endl;

    //finding smallest element from the vector
    result = *min_element(v1.begin(), v1.end());
    cout << "smallest element of the vector:" << result << endl;

    return 0;
}

输出

smallest element of the array:-100
smallest element of the vector:10

参考:C++ std::min_element()



相关用法


注:本文由纯净天空筛选整理自 std::min_element() function with example in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。