[算法]汉诺塔

喜欢而已 提交于 2019-12-01 22:46:43
#include <iostream>
#include <cmath>

using namespace std;
int hannuota(int n, string a, string b, string c)
{
    if (n == 1)
    {
        //只有一个盘子的情况下直接将第一个塔上的盘子移动到第三个塔
        printf("塔%s------>塔%s\n", a.c_str(), c.c_str());
    }
    else {
        //1.先将第一个塔的n-1个盘子全部通过第三个塔移动到第二个塔上
        hannuota(n - 1, a, c, b);
        //2.再将剩下的一个盘子移动到第三个塔上
        printf("塔%s------>塔%s\n", a.c_str(), c.c_str());
        //3.最后将第二个塔上的盘子通过第一个塔移动到第三个塔上
        hannuota(n - 1, b, a, c);
    }
    return 1;
}
int main()
{
    
    printf("盘子移动如下:\n");
    hannuota(3, "A", "B", "C");//三个盘子,三个塔


    cout << "hello world" << endl;
    return 0;
}

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!