recursion

can some one show me an example how to convert the tail recursion back to the normal recursion?
I am really have a hard time




Write your question here.

normal recursion?
I would guess "normal" recursion means head recursion. The main perceivable difference between these two types (in terms of code) is where you're putting the return statement of the recursive function.

http://www.danzig.us/cpp/recursion.html
There's an example on that link. But I don't see the point of all.
I dunno. All I'm doing is providing @OP with a resource of the difference between tail end recursion and head recursion.
Topic archived. No new replies allowed.