汉诺塔模板

#include<iostream>
#include<cstdio>
using  namespace std;
void hanor(int src,int mid,int desk,int count){
    if(count==1){
        printf("%c -> %c\n",src,desk);
        return;
    }
    hanor(src,desk,mid,count-1);
    printf("%c %c\n",src,mid);
    hanor(mid,src,desk,count-1);
}
int main()
{
    int n;
    scanf("%d",&n);
    hanor('a','b','c',n);
    return 0;
}

 

全部评论

相关推荐

点赞 评论 收藏
分享
伟大的烤冷面被普调:暨大✌🏻就是强
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务