forked from TheAlgorithms/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFindMax.java
More file actions
27 lines (25 loc) · 713 Bytes
/
FindMax.java
File metadata and controls
27 lines (25 loc) · 713 Bytes
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
package com.thealgorithms.maths;
public final class FindMax {
private FindMax() {
}
/**
* @brief finds the maximum value stored in the input array
*
* @param array the input array
* @exception IllegalArgumentException input array is empty
* @return the maximum value stored in the input array
*/
public static int findMax(final int[] array) {
int n = array.length;
if (n == 0) {
throw new IllegalArgumentException("Array must be non-empty.");
}
int max = array[0];
for (int i = 1; i < n; i++) {
if (array[i] > max) {
max = array[i];
}
}
return max;
}
}