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()
相關用法
- C++ std::max()用法及代碼示例
- C++ std::max用法及代碼示例
- C++ std::make_signed用法及代碼示例
- C++ std::move_backward用法及代碼示例
- C++ std::move用法及代碼示例
- C++ std::mismatch()用法及代碼示例
- C++ std::minmax()用法及代碼示例
- C++ std::min_element()用法及代碼示例
- C++ std::multiplies用法及代碼示例
- C++ std::min()用法及代碼示例
- C++ std::minmax()、std::minmax_element()用法及代碼示例
- C++ std::min用法及代碼示例
- C++ std::memcmp()用法及代碼示例
- C++ std::min_element用法及代碼示例
- C++ std::memchr用法及代碼示例
- C++ std::minus用法及代碼示例
- C++ std::string::push_back()用法及代碼示例
- C++ std::less_equal用法及代碼示例
- C++ std::is_member_object_pointer模板用法及代碼示例
- C++ std::copy_n()用法及代碼示例
注:本文由純淨天空篩選整理自 std::max_element() function with example in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。