added assignment 2 ex 1
This commit is contained in:
parent
8639e2854a
commit
17b5c3adeb
17
src/Assignment2/Ex1.sc
Normal file
17
src/Assignment2/Ex1.sc
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
import scala.annotation.tailrec
|
||||||
|
|
||||||
|
def fib(x: Int): Int = if (x == 0 || x == 1) {x} else {
|
||||||
|
fib(x - 1) + fib(x - 2)
|
||||||
|
}
|
||||||
|
|
||||||
|
def fibTail(x: Int): Int = {
|
||||||
|
@tailrec
|
||||||
|
def fibTailStep(x: Int, a: Int, b: Int): Int = {
|
||||||
|
if (x == 0) {a}
|
||||||
|
else fibTailStep(x - 1, b, a + b)
|
||||||
|
}
|
||||||
|
fibTailStep(x, 0, 1)
|
||||||
|
}
|
||||||
|
|
||||||
|
fib(10)
|
||||||
|
fibTail(10)
|
Loading…
x
Reference in New Issue
Block a user