-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMin.kt
45 lines (37 loc) · 957 Bytes
/
Min.kt
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
package other
import java.lang.IllegalArgumentException
/**
* Algorithm for finding the minimum value from a list
*
*/
class Min<T : Comparable<T>> {
/**
*
* @return returns the minimum element from the list
*/
fun compute(items: List<T>) : T {
if (items.isEmpty()) {
throw IllegalArgumentException("items is empty!")
}
var min = items[0]
for (i in 1 until items.size) {
if (min > items[i]) {
min = items[i]
}
}
return min
}
/**
*
* @return returns the minimum element from the list recursively
*/
fun computeRecursive(items: List<T>) : T {
if (items.size == 1) {
return items.first()
}
val first = items.first()
val others = items.subList(1, items.size)
val min = computeRecursive(others)
return if (first < min) first else min
}
}