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;
    }
  • 相关阅读:
    php redis 操作大全
    迟到的2017读书计划
    将博客搬至CSDN
    maven安装教程
    liunx centOS6.5安装jdk教程
    centOS6.0虚拟机ip配置
    html网页调用本地exe程序的实现方法:
    org.springframework.beans.factory.BeanCreationException 解决异常错误
    sqlserver查看锁表进程及对锁定的表进行解锁
    tomcat免安装版做成windows系统服务
  • 原文地址:https://www.cnblogs.com/libra-yong/p/6296346.html
Copyright © 2011-2022 走看看