How many lines, as a function of n (in Θ(∙) form), does the following program print? Write a recurrence and solve it. You may assume n is a power of 2.
function f(n)
if n > 1:
print-line(“still going”)
f(n/2)
f(n/2)
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.