-
Notifications
You must be signed in to change notification settings - Fork 19.7k
/
Copy pathFindMaxRecursion.java
40 lines (34 loc) · 1.12 KB
/
FindMaxRecursion.java
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
package com.thealgorithms.maths;
public final class FindMaxRecursion {
private FindMaxRecursion() {
}
/**
* Get max of an array using divide and conquer algorithm
*
* @param array contains elements
* @param low the index of the first element
* @param high the index of the last element
* @return max of {@code array}
*/
public static int max(final int[] array, final int low, final int high) {
if (array.length == 0) {
throw new IllegalArgumentException("Array must be non-empty.");
}
if (low == high) {
return array[low]; // or array[high]
}
int mid = (low + high) >>> 1;
int leftMax = max(array, low, mid); // get max in [low, mid]
int rightMax = max(array, mid + 1, high); // get max in [mid+1, high]
return Math.max(leftMax, rightMax);
}
/**
* Get max of an array using recursion algorithm
*
* @param array contains elements
* @return max value of {@code array}
*/
public static int max(final int[] array) {
return max(array, 0, array.length - 1);
}
}