-
Notifications
You must be signed in to change notification settings - Fork 21.1k
Expand file tree
/
Copy pathAverage.java
More file actions
80 lines (74 loc) · 2.92 KB
/
Average.java
File metadata and controls
80 lines (74 loc) · 2.92 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package com.thealgorithms.maths;
import java.util.Arrays;
import java.util.OptionalDouble;
/**
* A utility class for computing the average of numeric arrays.
*
* <p>This class provides static methods to calculate the arithmetic mean
* of arrays of both {@code double} and {@code int} values. It also offers
* a Stream-based alternative for modern, declarative usage.
*
* <p>All methods guard against {@code null} or empty inputs.
*/
public final class Average {
// Prevent instantiation of this utility class
private Average() {
throw new UnsupportedOperationException("This is a utility class and cannot be instantiated.");
}
/**
* Computes the arithmetic mean of a {@code double} array.
*
* <p>The average is calculated as the sum of all elements divided
* by the number of elements: {@code avg = Σ(numbers[i]) / n}.
*
* @param numbers a non-null, non-empty array of {@code double} values
* @return the arithmetic mean of the given numbers
* @throws IllegalArgumentException if {@code numbers} is {@code null} or empty
*/
public static double average(double[] numbers) {
if (numbers == null || numbers.length == 0) {
throw new IllegalArgumentException("Numbers array cannot be empty or null");
}
double sum = 0;
for (double number : numbers) {
sum += number;
}
return sum / numbers.length;
}
/**
* Computes the arithmetic mean of an {@code int} array.
*
* <p>The sum is accumulated in a {@code long} to prevent integer overflow
* when processing large arrays or large values.
*
* @param numbers a non-null, non-empty array of {@code int} values
* @return the arithmetic mean as a {@code long} (truncated toward zero)
* @throws IllegalArgumentException if {@code numbers} is {@code null} or empty
*/
public static long average(int[] numbers) {
if (numbers == null || numbers.length == 0) {
throw new IllegalArgumentException("Numbers array cannot be empty or null");
}
long sum = 0;
for (int number : numbers) {
sum += number;
}
return sum / numbers.length;
}
/**
* Computes the arithmetic mean of a {@code double} array using Java Streams.
*
* <p>This method is a declarative alternative to {@link #average(double[])}.
* Instead of throwing on empty input, it returns an empty {@link OptionalDouble},
* following the convention of the Stream API.
*
* @param numbers an array of {@code double} values, may be {@code null} or empty
* @return an {@link OptionalDouble} with the mean, or empty if input is null/empty
*/
public static OptionalDouble averageStream(double[] numbers) {
if (numbers == null || numbers.length == 0) {
return OptionalDouble.empty();
}
return Arrays.stream(numbers).average();
}
}