gpt4 book ai didi

algorithm - 简单循环阿克曼函数

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:00:47 26 4
gpt4 key购买 nike

如何写Ackermann function用一个简单的非递归循环?

最佳答案

这是一个可能的实现:

import java.util.ArrayList;

public class LinearAckermann {

static ArrayList<Long> mList = new ArrayList<Long>();

public static long ackermann(long m, long n) {
while (true) {
if (m == 0) {
n += 1;
if (mList.isEmpty()) {
return n;
} else {
int index = mList.size() - 1;
m = mList.get(index);
mList.remove(index);
}
} else if (n == 0) {
m -= 1;
n = 1;
} else {
mList.add(m - 1);
n -= 1;
}
}
}

public static void main(String[] args) {
System.out.println(ackermann(4, 1));
}
}

它使用 mList 而不是堆栈来保存待处理的工作;当堆栈变空时,它可以返回累加值。

关于algorithm - 简单循环阿克曼函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5605258/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com