Last active
August 29, 2015 14:23
-
-
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).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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