Answered step by step
Verified Expert Solution
Question
1 Approved Answer
2. Consider the following functions. For each of them, determine how many times is hey printed in terms of the input n. You should first
2. Consider the following functions. For each of them, determine how many times is hey printed in terms of the input n. You should first write down a recurrence and then solve it using the recursion tree method. That means you should write down the first few levels of the recursion tree, specify the pattern, and then solve. (a) def fun(n) { if (n > 1) { print( hi hi hi ) fun(n/4) fun(n/4) fun(n/4) }}
(b) def fun(n) { if (n > 1) { for i=1 to n { print( hi hi ) } fun(n/4) fun(n/4) fun(n/4) }}
2. Consider the following functions. For each of them, determine how many times is 'hey? printed in terms of the input n. You should first write down a recurrence and then solve it using the recursion tree method. That means you should write down the first few levels of the recursion tree, specify the pattern, and then solve. (a) def fun(n) { if (n > 1) { print( 'hi' 'hi' 'hi') fun (n/4) fun(n/4) fun(n/4) }} (b) def fun(n) { if (n > 1) { for i=1 to n { print( 'hi' 'hi' ) fun (n/4) fun(n/4) fun(n/4)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