Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Compare the following two functions and explain how they differ to achieve the same result, i.e. what technique is used in the second example, how
Compare the following two functions and explain how they differ to achieve the same result, i.e. what technique is used in the second example, how this technique works, and why it is important. Do NOT trace the code but rather explain the ideas the code illustrates.
1) | 2) |
int fib (int n) { if (n <= 1) return n; return fib(n-1) + fib(n-2); } | int fib (int n) { helper(n, 0, 1); } int helper (int n, int a, int b) { if (n == 0) return a; if (n == 1) return b; return helper(n-1, b, a+b); } |
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started