hanoi(汉诺)塔问题

#include<stdio.h>
int main()
{
    void hanoi(int n,char one,char two,char three);
    int m;
    scanf("%d",&m);
    printf("移动%d个盘子\n",m);
    hanoi(m,'A','B','C');
}
void hanoi(int n,char one,char two,char three)
{
    void move(char x,char y);
    if(n==1)
        move(one,three);
    else
    {
        hanoi(n-1,one,three,two);
        move(one,three);
        hanoi(n-1,two,one,three);
    }
}
void move(char x,char y)
{
    printf("%c-->%c\n",x,y);
}

猜你喜欢

转载自blog.csdn.net/zhangxue1232/article/details/104842391