diff --git a/src/Assignment2/Ex2.sc b/src/Assignment2/Ex2.sc new file mode 100644 index 0000000..3287f79 --- /dev/null +++ b/src/Assignment2/Ex2.sc @@ -0,0 +1,12 @@ +import scala.annotation.tailrec + +def sum(f: Int => Double, a: Int, b: Int) = { + @tailrec + def iter(a: Int, acc: Double): Double = { + if (a > b) acc + else iter(a + 1, acc + f(a)) + } + iter(a, 0) +} + +sum(x => x * x, 3, 5) \ No newline at end of file diff --git a/src/Assignment2/Ex3.sc b/src/Assignment2/Ex3.sc new file mode 100644 index 0000000..e5c84ba --- /dev/null +++ b/src/Assignment2/Ex3.sc @@ -0,0 +1,37 @@ +import scala.annotation.tailrec + +// 3.1 +def product(f: Int => Double)(a: Int)(b: Int): Double = { + @tailrec + def iter(i: Int, prod: Double): Double = + if (i > b) prod + else iter(i + 1, prod * f(i)) + + iter(a, 1) +} + +product(x => x)(3)(5) + +// 3.2 +def factorial(n: Int): Double = product(i => if (i == 0) {1} else {i})(0)(n) + +factorial(5) + + +// 3.3 +def mapReduce(red: (Double, Double) => Double)(v0: Double)(f: Int => Double)(a: Int)(b: Int) = { + @tailrec + def iter(i: Int, acc: Double): Double = + if (i > b) acc + else iter(i + 1, red(acc, f(i))) + + iter(a, v0) +} + +val sum = mapReduce((a, b) => a + b)(0) _ +val prod = mapReduce((a, b) => a * b)(1) _ + +sum(i => i)(1)(5) +prod(i => i)(1)(5) + +mapReduce((a, b) => a + b)(0)(i => 2 * i + 1)(1)(5) \ No newline at end of file