Given an array arr[], find the maximum element of this array using STL in C++.
Example:
Input: {1, 45, 54, 71, 76, 12}
Output: 76
Input: {1, 7, 5, 4, 6, 12}
Output: 12
Approach: Max or Maximum element can be found with the help of *max_element() function provided in STL.
Syntax:
*max_element (first_index, last_index);
CPP
#include <bits/stdc++.h>
using namespace std;
int main()
{
int arr[] = { 1, 45, 54, 71, 76, 12 };
int n = sizeof (arr) / sizeof (arr[0]);
cout << "Array: " ;
for ( int i = 0; i < n; i++)
cout << arr[i] << " " ;
cout << "\nMax Element = " << *max_element(arr, arr + n);
return 0;
}
|
Output
Array: 1 45 54 71 76 12
Max Element = 76
Time Complexity:- O(n)
Auxiliary Space: O(1)
As constant extra space is used.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
08 Mar, 2023
Like Article
Save Article