2014年6月12日
摘要: #includevoid move(int n,char a,char b,char c){ if(n==1) printf("\t%c->%c\n",a,c); //当n只有1个的时候直接从a移动到c else { move(n-1,a,c,b)... 阅读全文
posted @ 2014-06-12 19:34 大头大头下雨不愁 阅读(75) 评论(0) 推荐(0)