如何在 C++ 中使用 STL 找出向量的最大元素?


在本教程中,我們將討論一個程式,以瞭解如何在 C++ 中使用 STL 查詢向量的最大元素。

要查詢給定向量的最大元素,我們將使用 STL 庫中的 *max_element() 方法。

示例

 現場演示

#include <bits/stdc++.h>
using namespace std;
int main(){
   //defining the vector
   vector<int> a = { 1, 45, 54, 71, 76, 12 };
   cout << "Vector: ";
   for (int i = 0; i < a.size(); i++)
      cout << a[i] << " ";
   cout << endl;
   //finding the maximum element
   cout << "Max Element = " << *max_element(a.begin(), a.end());
   return 0;
}

輸出

Vector: 1 45 54 71 76 12
Max Element = 76

更新於:2020 年 2 月 25 日

6K+ 瀏覽次數

啟動你的 職業生涯

透過完成課程來獲得認證

開始
廣告