Anyone know Recursion tree method, substitution method and master theorm method? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 2

Anyone know Recursion tree method, substitution method and master theorm method?

Anyone can explain that method with algorithm please, Exam are near but don't have concept, I will be thankful....

7th Jul 2018, 3:40 AM
Janbaz Khan
Janbaz Khan - avatar
2 Antworten
0
You just call the function itself again in the function. Given the output of it as parameter(s). Example, Python 3: def func(inputVal): outputVal = None # Do the stuff you want here... return func(outputVal) Exp Tip: Place a condition to break recursion. Cuz else it will be a while(true) loop. Hope that helps : D
7th Jul 2018, 9:25 PM
Mustafa Yıldız
Mustafa Yıldız - avatar