Skip to content

Instantly share code, notes, and snippets.

@aalhour
Last active August 29, 2015 14:23
Show Gist options
  • Save aalhour/d0e3bfd61802cd24c5cd to your computer and use it in GitHub Desktop.
Save aalhour/d0e3bfd61802cd24c5cd to your computer and use it in GitHub Desktop.
Implementation of the Ackermann formula as discussed on ComputerPhile (https://www.youtube.com/watch?v=i7sm9dzFtEI).
public class AckermannFormula
{
public static long Ackermann(long m, long n)
{
if (m == 0) return (n+1);
else if (n == 0) Ackermann(m-1, 1);
else return Ackermann(m-1, Ackermann(m, n-1));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment