- Notifications
You must be signed in to change notification settings - Fork 19.9k
/
Copy pathFindMinRecursion.java
42 lines (34 loc) · 1.13 KB
/
FindMinRecursion.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
41
42
packagecom.thealgorithms.maths;
publicfinalclassFindMinRecursion {
privateFindMinRecursion() {
}
/**
* Get min 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 min of {@code array}
*/
publicstaticintmin(finalint[] array, finalintlow, finalinthigh) {
if (array.length == 0) {
thrownewIllegalArgumentException("array must be non-empty.");
}
if (low == high) {
returnarray[low]; // or array[high]
}
intmid = (low + high) >>> 1;
intleftMin = min(array, low, mid); // get min in [low, mid]
intrightMin = min(array, mid + 1, high); // get min in [mid+1, high]
returnMath.min(leftMin, rightMin);
}
/**
* Get min of an array using recursion algorithm
*
* @param array contains elements
* @return min value of {@code array}
*/
publicstaticintmin(finalint[] array) {
returnmin(array, 0, array.length - 1);
}
}