-
Notifications
You must be signed in to change notification settings - Fork 0
/
arrayMinMax.cpp
56 lines (50 loc) · 1.03 KB
/
arrayMinMax.cpp
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
#include <iostream>
using namespace std;
struct MinMax{
int min;
int max;
};
MinMax getMinMax(int arr[],int n){
struct MinMax minmax;
int i;
//condition for one element
if(n==1){
minmax.max = arr[0];
minmax.min = arr[0];
return minmax;
}
//more than one element
if(arr[0]>arr[1]){
minmax.max = arr[0];
minmax.min = arr[1];
}
else{
minmax.max = arr[1];
minmax.min = arr[0];
}
for(i=2;i<n;i++){
if(arr[i]>minmax.max){
minmax.max = arr[i];
}
else if(arr[i]<minmax.min){
minmax.min = arr[i];
}
}
return minmax;
}
int main(){
//structure
int arr_size;
cout<<"Enter the array size -->";
cin>>arr_size;
int arr[arr_size];
cout<<"enter the array element -->"<<"\n";
for(int i=0;i<arr_size;i++){
cout<<"value of "<<i<<"-->";
cin>>arr[i];
}
struct MinMax minmax = getMinMax(arr,arr_size);
cout<<"Minimum element of array -> "<<minmax.min<<endl;
cout<<"Max element of array -> "<<minmax.max<<endl;
return 0;
}