Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Tail Recursion

Name: Anonymous 2011-10-19 21:09

How do i make this function tail recursive in java


public int fib(int n)
{
  return( n <= 1 ? n : fib(n-1) + fib(n-2) );
}

Name: Anonymous 2011-10-20 13:53

>>28
I said C, not ANSI C, that means, I didn't specify anything, neither ANSI C, nor GNU C.

And didn't I already tell you to move your autistic ass back to /g/?

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List