JavaAlgorithms/Maths/AbsoluteMax.java

33 lines
830 B
Java
Raw Normal View History

2019-10-07 19:49:06 +08:00
package Maths;
import java.util.Arrays;
/**
* description:
* <p>
* absMax([0, 5, 1, 11]) = 11, absMax([3 , -10, -2]) = -10
* </p>
*/
public class AbsoluteMax {
public static void main(String[] args) {
int[] numbers = new int[]{3, -10, -2};
System.out.println("absMax(" + Arrays.toString(numbers) + ") = " + absMax(numbers));
}
/**
2019-12-11 12:35:54 +08:00
* get the value, return the absolute max value
2019-10-07 19:49:06 +08:00
*
* @param numbers contains elements
* @return the absolute max value
*/
public static int absMax(int[] numbers) {
int absMaxValue = numbers[0];
for (int i = 1, length = numbers.length; i < length; ++i) {
if (Math.abs(numbers[i]) > Math.abs(absMaxValue)) {
absMaxValue = numbers[i];
}
}
return absMaxValue;
}
}