摘要:
Hanoiclass Program { static long count = 0; static void move(char x, char y) { Console.WriteLine("{0}--->{1}", x, y); } static void hanoi(int n, char one, char two, char three) { if (n != 0) { hanoi(n - 1, o... 阅读全文
posted @ 2013-03-05 14:55
abstract未央
阅读(152)
评论(0)
推荐(0)
浙公网安备 33010602011771号