码迷,mamicode.com
首页 > 其他好文 > 详细

hanoi塔问题

时间:2014-08-03 12:52:15      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:hanoi塔问题

// 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塔问题

标签:hanoi塔问题

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!