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


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


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

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

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

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

std::max_element() 函数的语法

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

参数:

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

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

例:

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

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

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

//C++ STL program to demonstrate use of
//std::max_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 largest element from the array
    int result = *max_element(arr + 0, arr + 5);
    cout << "largest element of the array:" << result << endl;

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

    return 0;
}

输出

largest element of the array:400
largest element of the vector:50

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



相关用法


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