We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
不知道什么原因,书中示例和维基百科上关于阿克曼函数的定义是不一致的。我修改了代码,但是不知道是否正确,希望能有人看一下。
(define (A x y) (cond ((= y 0) (A (- x 1) 1)) ((= x 0) (+ y 1)) (else (A (- x 1) (A x (- y 1))))) )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
不知道什么原因,书中示例和维基百科上关于阿克曼函数的定义是不一致的。我修改了代码,但是不知道是否正确,希望能有人看一下。
The text was updated successfully, but these errors were encountered: