One usage of recurison: the tower of Hanoi

本文通过递归方法解决了经典的汉诺塔问题,并提供了一个Java实现案例。汉诺塔是一个涉及递归思维的数学谜题,目标是将一系列不同大小的盘子从一个柱子移动到另一个柱子上,每次只能移动一个盘子,且大盘不能置于小盘之上。

Statements: This blog was written by me, but most of content  is quoted from book【Data Structure with Java Hubbard】 

【Description】

  we have seen important examples of functions that are more naturally defined and more easily understood by using recursion. Foe some problem, recursion is the only reasonable method of solution.The towers of hanoi puzzle is a classical example of a problem whose solution demands recursion. The game consists of a board with three vertical pegs labeled A, B, and C, and a sequence of n disks with holes in their centers. The radii of the disks are in an arithmetic progression(eg,6cm, 7cm, 8cm); and are mounted on peg A. The rule is that no disk may be above a smaller disk on the same peg. The objective of the game is to move all the disks from peg A to peg C, one disk at a time, without violating the rule. 


【Implement】

The program prints the solution to the towers of Hanoi problem of moving three disk from peg A to peg C via Peg B. 
package com.albertshao.ds.recursion;

//  Data Structures with Java, Second Edition
//  by John R. Hubbard
//  Copyright 2007 by McGraw-Hill


public class TestHanoiTowers {
  public static void main(String[] args) {
    HanoiTowers(3, 'A', 'B', 'C');
  }
  
  public static void HanoiTowers(int n, char x, char y, char z) {
    if (n==1) {                // basis
      System.out.printf("Move top disk from peg %c to peg %c.%n", x, z);
    } else {              
      HanoiTowers(n-1, x, z, y);  // recursion
      HanoiTowers(1, x, y, z);    // recursion  
      HanoiTowers(n-1, y, x, z);  // recursion
    }
  }
}

【Result】

Move top disk from peg A to peg C.
Move top disk from peg A to peg B.
Move top disk from peg C to peg B.
Move top disk from peg A to peg C.
Move top disk from peg B to peg A.
Move top disk from peg B to peg C.
Move top disk from peg A to peg C.





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值