How exactly the recursive function work?? Explain me with real time example | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How exactly the recursive function work?? Explain me with real time example

20th Mar 2018, 7:35 PM
Abhijnana Hk
Abhijnana Hk - avatar
3 Answers
+ 5
recursion is calling the a function within itself. this is used to prevent sloppy brutal code and to prevent using loops. The most simple example is with factorial recursion.(!) public int fact(int n) { if(n==1) return 1; else return n*fact(n-1); } System.out.println(fact(4)); output: 24 Explanation: The code runs at the start with 4. 4 is larger then 1 then is returns 4*fact(4-1) then it runs fact(3) 3>1 ; returns 3*fact(3-1) 2>1; returns 2*fact(2-1) 1=1; returns 1. then the whole function is solved. 2*fact(2-1)=2 = fact(2) 3*fact(2) = 6 = fact(3) 4*fact(3)= 24 = fact(4)
20th Mar 2018, 7:45 PM
Tomer Sim
Tomer Sim - avatar
+ 4
Some examples and discussion on recursive functions: https://www.sololearn.com/Discuss/1111022/?ref=app
21st Mar 2018, 12:28 AM
Pedro Demingos
Pedro Demingos - avatar
+ 2
https://code.sololearn.com/W5oKwh4eGFDQ/?ref=app My favorite example of recursive function has always been a fractal tree. in this code, notice a function called doit() inside that function, it draws a line from point A to point B.. At the end of the function, it calls the function 2 times with point B as the starting point. Since it calls this function twice, it draws 2 lines from point B to points C and points D. Each of runs of the function calls the function 2 more times. so it goes from C and D to E,F,G,H.. and repeats until told not to. call function and it draws a line.. | Then it calls itself twice and draws those lines.. \/ | And so on \ / \/ \/ |
20th Mar 2018, 8:26 PM
LordHill
LordHill - avatar