标签:element block 比较 文件 定义 inline log logs template
该函数定义在头文件< algorithm >中,作用为找区间的最大值(最小值)。
该部分借鉴于https://www.cnblogs.com/xenny/p/10195292.html
first, end —— 区间范围
comp —— 自定义比较函数
\(O(n})\)
注意函数返回的是一个迭代器,需要加上*才能得到值。
int main()
{
int a[] = {1,2,3,4,5};
int maxs = *max_element(a,a+5);
int mins = *min_element(a,a+5);
cout << maxs << " " << mins << endl;
return 0;
}
输出结果:
5 1
标签:element block 比较 文件 定义 inline log logs template
原文地址:https://www.cnblogs.com/Crystar/p/13332168.html