Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
54081 | littletwleve | 汉诺塔的移动过程 | C++ | 通过 | 28 MS | 248 KB | 364 | 2024-10-25 16:01:42 |
#include<bits/stdc++.h> using namespace std; int cnt=0; void move(char s,char t){ cout<<s<<"->"<<t<<endl; cnt++; } void hanoi(int n,char a,char b,char c){ if(n==1){ move(a,c); } else{ hanoi(n-1,a,c,b); move(a,c); hanoi(n-1,b,a,c); return; } } int main(){ int n; cin>>n; hanoi(n,'A','B','C'); cout<<cnt; return 0; }