Hanoi Tower Problem

Source: Internet
Author: User

Hanoi Tower problem is a purely recursive problem, it should be relatively simple

When you're done with n plates, it's OK to just n-1 a plate.
First N-1 a plate through the left side of the plate in the middle of the plate, put the nth plate in the past, and finally put the n-1 plate on the leftmost one is OK.

#include <stdio.h>void Move (char A,char C) {    printf ("%c---%c\n", a,c);} void Han (char a,char b,char c,int N) {    if (n==1)        move (a,c);    else    {        han (a,c,b,n-1);        Move (a,c);        Han (b,a,c,n-1);}    } int main () {    int n;    scanf ("%d", &n);    Han (' A ', ' B ', ' C ', n);    return 0;}

  

Hanoi Tower Problem

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.