📌  相关文章
📜  如何在C++中使用STL查找数组的最大元素?

📅  最后修改于: 2021-05-30 15:21:25             🧑  作者: Mango

给定数组arr [],请在C++中使用STL查找此数组的最大元素。

例子:

Input: {1, 45, 54, 71, 76, 12}
Output: 76

Input: {1, 7, 5, 4, 6, 12}
Output: 12

方法:可以借助STL中提供的* max_element()函数找到Max或Maximum元素。

句法:

*max_element (first_index, last_index);
// C++ program to find the max
// of Array using sort() in STL
  
#include 
using namespace std;
  
int main()
{
    // Get the array
    int arr[] = { 1, 45, 54, 71, 76, 12 };
  
    // Compute the sizes
    int n = sizeof(arr) / sizeof(arr[0]);
  
    // Print the array
    cout << "Array: ";
    for (int i = 0; i < n; i++)
        cout << arr[i] << " ";
  
    // Find the maximum element
    cout << "\nMax Element = "
         << *max_element(arr, arr + n);
    return 0;
}
输出:
Array: 1 45 54 71 76 12 
Max Element = 76
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”