Can anyone suggest an effective way of understanding recursion in c++ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Can anyone suggest an effective way of understanding recursion in c++

I can use recursion if there is a problem with only one same operation in the whole loop.. but for problems with more than one operation, its hard for me to solve it using recursion(like Fibonacci series, Finding GCD,etc)

2nd May 2019, 1:56 PM
Min_desu_ga
Min_desu_ga - avatar
4 Answers
+ 10
recursion is not language dependent, its a programming style/ paradigm. Here i have explained how recursion works actually, with an example (in a question answer section) For coding example in recursion I have made 2 codes on recursion and printed their stack trace. https://code.sololearn.com/WZ8ExDGmK4Ro/?ref=app https://www.sololearn.com/Discuss/1780706/?ref=app You can try writing your own codes as HonFu suggested. Hope that helped 😄
2nd May 2019, 2:30 PM
Aaditya Deshpande
Aaditya Deshpande - avatar
+ 3
What worked for me: Solve the simplest tasks using recursion, like finding sum, max, prime or taking input. After I did these for a while, it became suddenly easier to imagine more complicated cases.
2nd May 2019, 2:01 PM
HonFu
HonFu - avatar
+ 1
HonFu Okay
2nd May 2019, 2:07 PM
Min_desu_ga
Min_desu_ga - avatar
+ 1
okay
2nd May 2019, 3:55 PM
Min_desu_ga
Min_desu_ga - avatar