漢諾塔問題(以及遞歸的個人理解)

#include <stdio.h> int i=0; void move(int n,char a,char b){ printf("move %d from %c to %c\n",n,a,b); i++; } void hanoi(int n,char a,char b,char c){ if(n==1) move(1,a,c); else { hanoi(n-
相關文章
相關標籤/搜索