help w/ recursion -returns 95 but why not 99? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

help w/ recursion -returns 95 but why not 99?

this code returns 95 but i would expect it to return 99. can anyone explain please ? public class Program { public static int cbse(int x){ if (x < 100){ //System.out.println(x); x = cbse(x + 10); //System.out.println(x); } return x - 1; } public static void main(String[] args) { int free = cbse(60); System.out.println(free); } }

17th Jul 2019, 4:57 PM
Jasper Ricon
Jasper Ricon - avatar
7 Answers
+ 14
cbse(60) => return 96-1=95 (final result) \ 1) /8) cbse(70) => return 97-1=96 \ 2) /7) cbse(80) => return 98-1=97 \ 3) /6) cbse(90) =>return 99-1=98 \ 4) /5) cbse(100) => return 100-1=99 might be helpful to see how its happening in more simple way, steps are numbered.
17th Jul 2019, 6:45 PM
Gaurav Agrawal
Gaurav Agrawal - avatar
+ 8
Performing a dry run, we have: Initial : cbse(60) -> cbse(70)-1 // since the value returned is x-1, and x // was the value returned by cbse(70) -> cbse(80)-2 // evaluation of cbse(70) = cbse(80)-1. // Thus cbse(60) = // (cbse(80)-1)-1 = cbse(80)-2 -> cbse(90)-3 // Continuing with above pattern -> cbse(100)-4 Now, cbse(100) is 100-1 = 99. So the answer is 99-4 = 95.
17th Jul 2019, 5:03 PM
Kinshuk Vasisht
Kinshuk Vasisht - avatar
+ 2
thank you for the quick response. i am still somewhat confused. why does x retain the state of x - 1 if it is not getting called until the condition is met?
17th Jul 2019, 5:21 PM
Jasper Ricon
Jasper Ricon - avatar
+ 2
The -1 is not from the final return statement, but the return statement from another call to the function. The compiler saved the value of cbse(70) in x, evaluated it and proceeded to the return statement. So cbse(60) becomes cbse(70)-1. Now cbse(70) must have also evaluated some x and returned it after subtracting 1. So the value of x is modified accordingly.
17th Jul 2019, 5:26 PM
Kinshuk Vasisht
Kinshuk Vasisht - avatar
+ 2
i believe it is starting to sink in. thank you so much.
17th Jul 2019, 5:29 PM
Jasper Ricon
Jasper Ricon - avatar
+ 2
the best comparison i can think of is like the movie ‘Inception’ where it keeps going one level deeper and deeper until they need to come back completely, then they still have to run up the dream stack or stack lol. i definitely got it now. thank you!
17th Jul 2019, 5:43 PM
Jasper Ricon
Jasper Ricon - avatar
0
Y
31st Oct 2019, 1:11 AM
Elizabeth Nowell
Elizabeth Nowell - avatar