-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFactorial.kt
49 lines (42 loc) · 1.07 KB
/
Factorial.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
46
47
48
49
package other
/**
* Algorithm for finding the factorial of a positive number n
*
*/
class Factorial {
/**
* worst time: O(n)
* amount of memory: O(1)
*
* @return returns the factorial of a number by an iterative method
*/
fun compute(number: Int) : Int {
if (number <= 1) {
return 1
}
var result = 1
for (i in 2..number) {
result *= i
}
return result
}
/**
* worst time: O(n)
* amount of memory: O(n) - stack for recursion
*
* @return returns factorial recursively
*/
fun computeRecursive(number: Int) : Int {
return if (number <= 1) {
1
} else {
number * computeRecursive(number - 1)
}
}
/**
* @see <a href="https://kotlinlang.org/docs/functions.html#tail-recursive-functions">tailrec functions</a>
*
*/
tailrec fun computeRecursiveWithKotlinOptimization(number: Int) : Int =
if (number <= 1) 1 else number * computeRecursiveWithKotlinOptimization(number - 1)
}