my dog learned polymorphism
The moose likes Java in General and the fly likes Recursion Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "Recursion" Watch "Recursion" New topic
Author

Recursion

Will Myers
Ranch Hand

Joined: Aug 05, 2009
Posts: 285

I was wondering if anyone had a good simple explanation of how to work out what the result is from a recursive method? For example the following produces 24 as the result when you pass in 4... (1 * 2 * 3 * 4 = 24)



but how would you break it down if presented with this sort of question in an interview?

Another example would be


which will return 28 if you pass in 3 and 4 as the args but again how would you work this out manually? Is there a standard formula for breaking these down?
fred rosenberger
lowercase baba
Bartender

Joined: Oct 02, 2003
Posts: 9955
    
    6

paper and pencil is what I would do. if you pass in 3 and 4, it would return

(3 + 4) * recursion(2,2)

that would return

(3+4) * ( (2+2)* (recursion(1,0) )

that would return

(3 + 4) * ( (2+2) * 1)


Never ascribe to malice that which can be adequately explained by stupidity.
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35252
    
    7
Either that, or just follow the link.


Android appsImageJ pluginsJava web charts
Will Myers
Ranch Hand

Joined: Aug 05, 2009
Posts: 285

thanks Fred!

Nice work Ulf
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Recursion
 
Similar Threads
Java endian and bit order and signed and unsigned and python and more confusion than I can deal with
recursion situation baffles me
Project Euler #17
help in solving recursive problems??
SCJP problem with boxing