The key is to understand that converting linear recursion to a tail-recursive version involves carrying over a computed value over to the next iteration. Also, note that the call to the iter function at the end need not take in a and b as parameters directly but can be computed values. Thats what facilitates the tail-recursive version. Here's my solution to the exercise.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object FirstClassFunctions { | |
def sum(f: Int => Int)(a: Int, b:Int): Int = { | |
def iter(a: Int, result: Int): Int = | |
if (a > b) result | |
else iter(a + 1, f(a) + result) | |
iter(a,0) | |
} | |
def main(args: Array[String]) { | |
println("Sum is: " + sum(x => x)(1,10)) | |
} | |
} |
No comments:
Post a Comment