Ackerman

Posted howbin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ackerman相关的知识,希望对你有一定的参考价值。

Ackerman

一 . 问题描述及分析

 

技术分享图片
图1

技术分享图片

 

二 . 代码实现

  package other;

import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;

public class bin_1
{

    public static void main(String[] args) throws IOException
    {
        Ackerman myAckerman=new Ackerman(10, 2);
    }
}
class Ackerman
{
    int  m;
    int  n;
    int result;
    public Ackerman(int n,int  m) throws IOException
    {
        this.n=n;
        this.m=m;
        result=ackerman(n,m);
        display();
    }
    public int ackerman(int n,int m)
    {
        if(n==1&&m==0)
        {
            return 2;
        }
        if(n==0&&m>=0)
        {
            return 1;
        }
        if(n>=2&&m==0)
        {
            return n+2;
        }
        return ackerman(ackerman(n-1,m),m-1);
    }
    public void display() throws IOException
    {
        BufferedWriter fout=new BufferedWriter(new FileWriter("out.txt"));
        fout.write("result="+result);
    	fout.flush();
    }
}

三 . 运行结果

		Ackerman myAckerman=new Ackerman(10, 2);

 

技术分享图片
enter description here

 




以上是关于Ackerman的主要内容,如果未能解决你的问题,请参考以下文章

函数 记忆化搜索模型

第二章算法总结

算法与程序设计:递归

数字货币的法外之地?

大数加法和大数乘法

微信小程序代码片段