-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaxANDsecondMax.cpp
More file actions
66 lines (51 loc) · 1.27 KB
/
maxANDsecondMax.cpp
File metadata and controls
66 lines (51 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
//Initial Template for C++
// CPP code to find largest and
// second largest element in the array
#include <bits/stdc++.h>
using namespace std;
void largestAndSecondLargest(int, int[]);
// } Driver Code Ends
/* Function to find largest and second largest element
*sizeOfArray : number of elements in the array
* arr = input array
*/
void largestAndSecondLargest(int sizeOfArray, int arr[]){
int max = INT_MIN, max2= INT_MIN;
int n=sizeOfArray;
for(int i=0;i<n;i++)
{
if(arr[i]>max)
{
max=arr[i];
}
}
for(int i=0;i<n;i++)
{
if(arr[i]>max2 &&arr[i]<max)
{
max2=arr[i];
}
}
if(max2==INT_MIN)
max2=-1;
cout << max << " " << max2 << endl;
}
// { Driver Code Starts.
// Driver Code
int main() {
// Testcase input
int testcases;
cin >> testcases;
// Looping through all testcases
while(testcases--){
int sizeOfArray;
cin >> sizeOfArray;
int arr[sizeOfArray];
// Array input
for(int index = 0; index < sizeOfArray; index++){
cin >> arr[index];
}
largestAndSecondLargest(sizeOfArray, arr);
}
return 0;
} // } Driver Code Ends