- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要编写一个具有 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/
我正在尝试解决汉诺塔问题,到目前为止我已经尝试过: move(1,[H|T],B,C,A1,B1,C) :- A1 = T, B1 = [H|B]. move(N,A,B,C,A1,B1,C
我面临着编写一个函数(用 C 语言)的任务,该函数可以解决 Hanoi 塔问题并显示圆盘的每一个 Action 。 有问题的递归函数是:void hanoi(int m, int *I, int* J
我正在做一本书中的练习,要求我们使用递归方法解决汉诺塔问题。我找到了一个解决方案,但是从完成浏览 Internet 后收集到的信息来看,我的解决方案可能不正确。有谁知道解决问题的更好/不同方法?有没有
我为汉诺塔问题开发了一个解决方案: public static void bewege(int h, char quelle, char ablage, char ziel) { if(h >
我正在为学校做作业。这是汉诺塔任务。 (我还没有添加较大磁盘覆盖较小磁盘的代码)。当我将 tower3 设置为 4, 3, 2, 1 时,它说我赢了,但是当我在玩游戏时这样做时,什么也没有发生。请帮忙
我正在研究一个处理汉诺塔问题的变体的问题,在该问题中,您只能移动到相邻的钉子,而我们仅限于 3 个钉子问题。我已经获得了打印出光盘数量所需的移动的代码,但我不知道如何打印递归调用的数量。 def ad
所以我们遇到了经典的 Hanoi 问题,我刚刚开始研究这个递归问题,这真是太棒了!这是完全正常的,但我只是不明白它怎么可能!据我了解,对于任何 n,它都会打印“from +”到“+ thru”,每次
public class han { public static void main(String[] args) { hanoi(5, "A", "B", "C");
我有一个用java编写的汉诺塔程序,我能够让它工作,但我一生都无法弄清楚如何让它显示它的运行情况,例如“磁盘1从TowerA到TowerC”,“磁盘2从TowerA到TowerB”等。 这是我的代码:
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题?通过 editing this post 添加详细信息并澄清问题. 7年前关闭。 Improve this
Label the pegs A, B, C let n be the total number of discs number the discs from 1 (smallest, topmost
我必须使用 Bellman 动态规划方程(如果问题当然是可以解决的)。 现在,我明白了等式背后的逻辑: 其中 V^T 是时间 T 的目标函数,a^0 是时间 0 的 Action ,x^0 是起始配置
虽然我在理解递归方面没有任何问题,但我似乎无法理解汉诺塔问题的递归解决方案。这是来自 Wikipedia 的代码: procedure Hanoi(n: integer; source, dest,
虽然我在理解递归方面没有任何问题,但我似乎无法理解汉诺塔问题的递归解决方案。这是来自 Wikipedia 的代码: procedure Hanoi(n: integer; source, dest,
我目前正在尝试制作一个c程序,首先要求用户输入磁盘的数量,然后允许用户自由移动磁盘。 不过,它必须有原汉诺塔的规则,比如较大的圆盘不能放在较小的圆盘上。 另外,极点是“0,1,2” 例如, 输入: 5
我想编写标准的汉诺塔算法,使用 3 个棒和 n 个圆盘。但我还想学习如何使用列表,所以我想我可以将其结合起来。 我考虑过创建 3 个元素,每个元素代表一根杆。每一个都有 discs[] 数组,例如,如
我在维基百科上看到了这个求解汉诺塔的递归算法。谁能给我解释一下我是如何得到这个算法的递归方程的? Recursive solution label the pegs A, B, C — these l
大家晚上好 我有一个关于我类正在做的关于递归的家庭作业的快速问题。我们的想法是我们有这个汉诺塔程序,我们需要编写一个 main 来制作一个显示数字 5-25 的表格,以及解决这个大小的塔需要多少步,例
这个问题在这里已经有了答案: How does recursive algorithm work for Towers of Hanoi? (2 个答案) 关闭 8 年前。 我已经在 SO 上看到了
我无法让它在 Dyalog APL 中工作 solve←{ n a c b←⍵ n≤0:⍬ solve(n-1)a b c ⎕←'Move disk from
我是一名优秀的程序员,十分优秀!