首页 > 其他 > 详细

hanoi塔问题

时间:2014-08-03 12:52:15      阅读:362      评论:0      收藏:0      [点我收藏+]
// exam1.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>
#include <stack>
using namespace std;

void move(char x,char z,int n)
{
	static int num=0;
	cout<<"Step"<<++num<<":move number "<<n<<" disk from "<<x<<" to "<<z<<"."<<endl;
	return ;
}

void hanoi(char x,char y,char z,int n)
{
	if(n==0)
	{
		return;
	}
	hanoi(x,z,y,n-1);
	move(x,z,n);
	hanoi(y,x,z,n-1);
	return ;
}

int main(void)
{
	hanoi('x','y','z',3);

	system("pause");
	return 0;
}

bubuko.com,布布扣

hanoi塔问题,布布扣,bubuko.com

hanoi塔问题

原文:http://blog.csdn.net/cjc211322/article/details/38356221

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!