Java Implementation Tower

Source: Internet
Author: User

Tower of Hanoi (also known as Hanoi) is an ancient and legendary educational toy in India. When I created the world, da fan Tian made three diamond pillars, stacked 64 gold disks from bottom to top in order of size. The great fan Tian command Brahman re-placed the disc from below in order of size on another pillar. It is also stipulated that the disc cannot be enlarged on a small disc, and only one disc can be moved between the three pillars at a time.

Public class Hanoi {/***** @ param n * Number of plates * @ param A * Source seat * @ param B * auxiliary seat * @ param C * destination seat */public void hanoi (int n, char A, char B, char C) {if (n = 1) {move (A, C);} else {hanoi (n-1, A, C, b); move (A, C); hanoi (n-1, B, A, C);} // print the moving path private void move (char A, char C) {System. out. println ("Direction:" + A + "--->" + C);} public static void main (String [] args) {Hanoi hanoi = new Hanoi (); hanoi. hanoi (3, '1', '2', '3 ');}}

 

Print result:
Direction:1--->3  Direction:1--->2  Direction:3--->2  Direction:1--->3  Direction:2--->1  Direction:2--->3  Direction:1--->3  

 


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.