• 【三色汉诺塔】


    /*
    三色汉诺塔 
    */
    
    #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;
    }
  • 相关阅读:
    git---如何解决The authenticity of host can't be established.
    前端模板引擎artTemplate.js
    微信小程序
    小程序的项目结构设计
    拖拽插件SortableJS
    iscroll.js的简单使用方法
    头疼的闭包
    关于setTimeout的妙用前端函数节流
    webpack 加载动态图片
    在React中实现条件渲染的7种方法
  • 原文地址:https://www.cnblogs.com/libra-yong/p/6296346.html
Copyright © 2020-2023  润新知