How do write code using recursive function ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

How do write code using recursive function ?

I am studying data structure .when i saw the most of code in Internet are written using recursive function But i cannot think like that i just write code using loops i also want write code using recursive how did i train myself to do that ?

29th Sep 2019, 2:04 AM
Programmer Raja
Programmer Raja - avatar
3 Answers
+ 7
Think of base case(when recursion will end), expression for funcn(n) in term(s) of funcn(n-1), funcn(n-2)... etc, order in which you want to execute(will be decided in funcn() definition you will write) These are complete points you need while making simple recursion.
29th Sep 2019, 4:01 AM
Gaurav Agrawal
Gaurav Agrawal - avatar
+ 2
Isaac 😵😵
29th Sep 2019, 3:16 AM
Programmer Raja
Programmer Raja - avatar
+ 1
For me recursion is (still) tricky. I think it's not possible to learn it quickly. You have to do your best to understand as much as you can right now and then let it go. After a while try again. Most important is, however, a practice. You can check some of these examples, and there are also great comments in codes. Try to solve recursive challenge. Just take your time, you'll get it https://code.sololearn.com/cIWSi560L216/?ref=app https://code.sololearn.com/cBllBFdRQrZK/?ref=app
29th Sep 2019, 6:07 AM
Atila Sabo
Atila Sabo - avatar