首页 > 编程语言 > 详细

java-汉诺塔问题求解

时间:2014-03-15 16:47:41      阅读:431      评论:0      收藏:0      [点我收藏+]

package digui;

import java.util.*;

public class hanoi {

public static int count=0;

public static void main(String[]args)

{

System.out.println("please enter the number:");

Scanner scan=new Scanner(System.in);

int n=scan.nextInt();

String source=new String();

String destination=new String();

String auxiliary=new String();

System.out.println("please enter the source :");

source=scan.next();

System.out.println("please enter the destination:");

destination=scan.next();

System.out.println("please enter the auxiliary:");

auxiliary=scan.next();

hanoi(source,destination,auxiliary,n);

}

public static void hanoi(String from,String to,String auxiliary,int n)

{

if(n==1)

{

count++;

System.out.print("step"+count+":");

System.out.println("move the disk from  "+from+"  to  "+to);

}

else

{

hanoi(from,auxiliary,to,n-1);

count++;

System.out.println("step"+count+":"+"move the disk from  "+from+"  to  "+to);

hanoi(auxiliary,to,from,n-1);

}

}

}


本文出自 “hagar” 博客,谢绝转载!

java-汉诺塔问题求解,布布扣,bubuko.com

java-汉诺塔问题求解

原文:http://7832308.blog.51cto.com/7822308/1377109

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