zoukankan      html  css  js  c++  java
  • 【三色汉诺塔】

    /*
    三色汉诺塔 
    */
    
    #include <stdio.h>
    
    void hanoi(int disks, char source, char temp, char target)
    {
        if(disks == 1)
        {
            printf("move disk from %c to %c 
    ", source ,target);
            printf("move disk from %c to %c 
    ", source ,target);
            printf("move disk from %c to %c 
    ", source ,target);
        }
        else
        {
            hanoi(disks - 1, source, target, temp);
            hanoi(1, source, temp, target);
            hanoi(disks - 1, temp, source, target);
        }
    }
    
    void hanoi3colors(int disks)
    {
        char source = 'A';
        char temp = 'B';
        char target = 'C';
        int i;
        if(disks == 3)
        {
            printf("move disk from %c to %c 
    ", source , temp);
            printf("move disk from %c to %c 
    ", source , temp);
            printf("move disk from %c to %c 
    ", source , target);
            printf("move disk from %c to %c 
    ", temp , target);
            printf("move disk from %c to %c 
    ", temp , source);
            printf("move disk from %c to %c 
    ", target , temp);
        }
        else
        {
            hanoi(disks / 3 - 1, source, temp, target);
            printf("move disk from %c to %c 
    ", source, temp);
            printf("move disk from %c to %c 
    ", source, temp);
            printf("move disk from %c to %c 
    ", source, temp);
            
            hanoi(disks / 3 - 1, target, temp, source);
            printf("move disk from %c to %c 
    ", temp , target);
            printf("move disk from %c to %c 
    ", temp , target);
            printf("move disk from %c to %c 
    ", temp , target);
            
            hanoi(disks / 3 - 1, source, target, temp);
            printf("move disk from %c to %c 
    ", target , temp);
            printf("move disk from %c to %c 
    ", target , temp);
            
            hanoi(disks / 3 - 1, temp, source, target);
            printf("move disk from %c to %c 
    ", source , temp);
            
            for(i = disks / 3 - 1; i > 0; i--)
            {
                if(i > 1)
                {
                    hanoi(i - 1, target, source, temp);
                }
                printf("move disk from %c to %c 
    ", target, source);
                printf("move disk from %c to %c 
    ", target, source);
                if(i > 1)
                {
                    hanoi(i - 1, temp, source, target);
                }
                printf("move disk from %c to %c 
    ", source, temp);
            }
        }
    }
    
    int main()
    {
        int n;
        printf("请输入盘数:");
        scanf("%d", &n);
        
        hanoi3colors(n);
        
        return 0;
    }
  • 相关阅读:
    tkinter 类继承的三种方式
    tkinter 的两个例子
    python 测试驱动开发的简单例子
    python 播放 wav 文件
    Python 操作 MongoDB
    【转】如何拿到半数面试公司Offer——我的Python求职之路
    scrapy 保存到 sqlite3
    scrapy 爬取 useragent
    收集的User-Agent
    scrapy 登录
  • 原文地址:https://www.cnblogs.com/libra-yong/p/6296346.html
Copyright © 2011-2022 走看看