Finding Max & Min in Single Scan
Implementation for finding the maximum and minimum element in an array in a single scan itself.
Procedure :
void findMinMax(int a[], int n) {
// Assign min and max to first element
int min = a[0];
int max = a[0];
for (int i = 1; i < n; i++) {
// If current element is less than min, update min.
if (a[i] < min) {
min = a[i];
}
// If current element is greater than max, update max.
else if (a[i] > max) {
max = a[i];
}
}
printf("The maximum element is %d\n", max);
printf("The minimum element is %d\n", min);
}Last updated