What is the complexity of the below code? I could not not frame the recurrence leading to the code,it will be helpful if you guys please get me atleast the method to structure its recurrence:
Here it goes:
A bit late, but the key insight is that you can express the solution as a recurrence relationship. Namely the complexity for some value of n (let's call it C(n)) is:
C(n) = n * C(n/3) subject to C(1) = 1
This is because the loop runs n times with worst-case complexity of C(n/3) per iteration.
Actually this is an overestimate. The real complexity relationship is:
C(n) = Sum[ C(i/3) ] for i in [1, n]
but this will be a pain to deal with. The overestimate will be reasonable.
Best Regards,
BioPhysEngr http://blog.biophysengr.net
--
All advice is offered in good faith only. You are ultimately responsible for effects of your programs and the integrity of the machines they run on.
Bookmarks