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

📅  最后修改于: 2021-05-30 08:29:51             🧑  作者: Mango

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

Input: arr[] = {1, 45, 54, 71, 76, 12}
Output: min = 1, max = 76

Input: arr[] = {10, 7, 5, 4, 6, 12}
Output: min = 1, max = 76

方法:

  • 可以通过STL中提供的* min_element()函数找到Min或Minimum元素。
  • 可以通过STL中提供的* max_element()函数找到Max或Maximum元素。

句法:

*min_element (first, last);

*max_element (first, last);

使用的范围是[first,last),它包含first和last之间的所有元素,包括first指向的元素,但last指向的元素。

下面是上述方法的实现:

CPP
// C++ program to find the min and max element
// 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 minimum element
    cout << "\nMin Element = "
         << *min_element(arr, arr + n);
 
    // Find the maximum element
    cout << "\nMax Element = "
         << *max_element(arr, arr + n);
    return 0;
}


输出:
Array: 1 45 54 71 76 12 
Min Element = 1
Max Element = 76


想要从精选的最佳视频中学习和练习问题,请查看有关从基础到高级C++的C++基础课程以及有关语言和STL的C++ STL课程。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”