stl min函数
C ++ STL std :: min_element()函数 (C++ STL std::min_element() function)
min_element() function is a library function of algorithm header, it is used to find the smallest element from the range, it accepts a container range [start, end] and returns an iterator pointing to the element with the smallest value in the given range.
min_element()函数是算法标头的库函数,用于查找范围中的最小元素,它接受容器范围[start,end],并返回指向指定范围内具有最小值的元素的迭代器。
Additionally, it can accept a function as the third argument that will perform a conditional check on all elements.
此外,它可以接受函数作为第三个参数,它将对所有元素执行条件检查。
Note: To use min_element() function – include <algorithm> header or you can simple use <bits/stdc++.h> header file.
注意:要使用min_element()函数 –包括<algorithm>头文件,或者您可以简单地使用<bits / stdc ++。h>头文件。
Syntax of std::min_element() function
std :: min_element()函数的语法
std::min_element(iterator start, iterator end, [compare comp]);
Parameter(s):
参数:
iterator start, iterator end – these are the iterator positions pointing to the ranges in the container.
迭代器开始,迭代器结束 –这些是指向容器中范围的迭代器位置。
[compare comp] – it's an optional parameter (a function) to be compared with elements in the given range.
[compare comp] –它是一个可选参数(一个函数),可以与给定范围内的元素进行比较。
Return value: iterator – it returns an iterator pointing to the element with the smallest value in the given range.
返回值: iterator –它返回一个迭代器,该迭代器指向给定范围内具有最小值的元素。
Example:
例:
Input:
int arr[] = { 100, 200, -100, 300, 400 };
//finding smallest element
int result = *min_element(arr + 0, arr + 5);
cout << result << endl;
Output:
-100
C ++ STL程序演示std :: min_element()函数的使用 (C++ STL program to demonstrate use of std::min_element() function)
In this program, we have an array and a vector and finding their smallest elements.
在此程序中,我们有一个数组和一个向量并找到它们的最小元素。
//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;
}
Output
输出量
smallest element of the array: -100
smallest element of the vector: 10
Reference: C++ std::min_element()
参考: C ++ std :: min_element()
翻译自: https://www.includehelp.com/stl/std-min_element-function-with-example.aspx
stl min函数