gpt4 book ai didi

c - 为什么我的汉诺塔算法不起作用?

转载 作者:行者123 更新时间:2023-11-30 15:04:30 25 4
gpt4 key购买 nike

我需要编写一个具有 3 个参数的 hanoi 递归算法。这就是我得到的:

#include <stdio.h> #include <stdio.h>

void hanoi(int m, int i, int j);
void move(int start, int end);

int main(){
int n = 0;
int i = 1;
int j = 3;
printf("Enter how many disks you want to move: ");
scanf("%d", &n);
int m = n;
hanoi(m,i,j);

}

void hanoi(int m, int i, int j){
if (m==1)
{
move(i,j);
return;
}
hanoi(m-1,i,2);
move(i,j);
hanoi(m-1,2,j);

}

void move(int start, int end){
printf("A disk moves from position %d. to %d.\n", start,end);
}

n=3 的输出如下:

Enter how many disks you want to move: 3
A disk moves from position 1. to 2.
A disk moves from position 1. to 2.
A disk moves from position 2. to 2.
A disk moves from position 1. to 3.
A disk moves from position 2. to 2.
A disk moves from position 2. to 3.
A disk moves from position 2. to 3.

我查看了其他算法,我知道有很多算法可以解决古老的河内问题。然而,它们都有 4 个参数并使用字符,而我只想使用数字并在函数中省略辅助塔参数。我该如何修复它?对于 n=1 和 n=2,该算法运行良好。

最佳答案

代码需要使用other Hook ,而不是@Karoly Horvath评论的2

void hanoi(int m, int i, int j){    
if (m==1) {
move(i,j);
return;
}
int Other_peg = (1+2+3) - i - j;
hanoi(m-1,i,Other_peg);
move(i,j);
hanoi(m-1,Other_peg,j);
}

关于c - 为什么我的汉诺塔算法不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40266927/

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