//作用,把层数为towerN的汉诺塔从srcLoc移动到dstLoc
void hanoiTower(int towerN, int srcLoc, int dstLoc)
{
if (towerN == 1)
{
cout << ("把" + to_string(srcLoc) + "上的第" + to_string(towerN) + "个零件移动到" + to_string(dstLoc)) << endl;
}
else
{
int other = 6 - srcLoc - dstLoc;
hanoiTower(towerN - 1, srcLoc, other);
cout << ("把" + to_string(srcLoc) + "上的第" + to_string(towerN) + "个零件移动到" + to_string(dstLoc)) << endl;
hanoiTower(towerN - 1, other, dstLoc);
}
}
//调用
hanoiTower(10,1,3);
汉诺塔c++代码
最新推荐文章于 2023-08-17 20:26:28 发布
该代码实现了一个函数hanoiTower,用于解决汉诺塔问题。当层数为towerN时,它会将塔从源位置srcLoc移动到目标位置dstLoc,通过递归方式处理。在过程中,使用了另一个位置other作为辅助。最后,文章展示了如何调用此函数解决一个具体的汉诺塔问题(10层,从位置1移动到位置3)。
摘要由CSDN通过智能技术生成