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()
相关用法
- C++ std::min_element用法及代码示例
- C++ std::minmax()用法及代码示例
- C++ std::min()用法及代码示例
- C++ std::minmax()、std::minmax_element()用法及代码示例
- C++ std::min用法及代码示例
- C++ std::minus用法及代码示例
- C++ std::mismatch()用法及代码示例
- C++ std::max()用法及代码示例
- C++ std::move_backward用法及代码示例
- C++ std::move用法及代码示例
- C++ std::max_element()用法及代码示例
- C++ std::multiplies用法及代码示例
- C++ std::max用法及代码示例
- C++ std::make_signed用法及代码示例
- C++ std::memcmp()用法及代码示例
- C++ std::memchr用法及代码示例
- C++ std::string::push_back()用法及代码示例
- C++ std::less_equal用法及代码示例
- C++ std::is_member_object_pointer模板用法及代码示例
- C++ std::copy_n()用法及代码示例
注:本文由纯净天空筛选整理自 std::min_element() function with example in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。