Tower of Hanoi (递归的神奇之力--化繁为简)

/*		*Tower of Hanoi*		*/

#include 
using namespace std;

void move(char s, char d) {
	cout<"<>m;
	cout<<"the steps to moving "<

你可能感兴趣的:(Recursive,Algorithm)