搜索资源列表

  1. 经典汉诺塔问题c语言版

    1下载:
  2. 汉诺塔是初学数据结构的同学最头疼的问题,这里是一个用递归函数解决汉诺塔问题的经典c语言程序,里面有代码和执行文件。-HANOR data structure is that when the students most headaches, here is a solution using a recursive function HANOR a classic c language program, which has code an
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:8707
    • 提供者:苏辉
  1. 演示汉诺塔问题

    0下载:
  2. 汉诺塔问题的示例-HANOR examples of problems
  3. 所属分类:多媒体

    • 发布日期:2008-10-13
    • 文件大小:43925
    • 提供者:刘晋
  1. 汉诺塔问题的C#实现

    0下载:
  2. 利用递归算法实现了汉诺塔问题的求解步骤
  3. 所属分类:C#编程

    • 发布日期:2010-10-19
    • 文件大小:21677
    • 提供者:zhudejun007
  1. 演示汉诺塔问题

    0下载:
  2. 汉诺塔问题的示例-HANOR examples of problems
  3. 所属分类:多媒体

    • 发布日期:2024-05-12
    • 文件大小:44032
    • 提供者:刘晋
  1. Hanoi_digui

    0下载:
  2. 用递归的方法解决汉诺塔问题的思想。-using recursive solution to the problem HANOR thinking.
  3. 所属分类:文档资料

    • 发布日期:2024-05-12
    • 文件大小:1024
    • 提供者:napster
  1. 汉诺塔(Hanoi)

    0下载:
  2. 一个汉诺塔问题的模拟程序,包含图形模拟和过程同步显示(华南农业大学信息学院计算机系).-one of the simulation program, including graphics simulation and process synchronization Display (South China Agricultural University, Department of Computer Information Instit
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-12
    • 文件大小:10240
    • 提供者:吴辞仁
  1. 汉诺塔课程设计(修改后)

    0下载:
  2. 汉诺塔演示程序,用VB做成的图形界面,能够实现汉诺塔问题,也即是把N个盘子从一根棍上移到另一根上面,通过中转的棍,但是必须保证在每根棍上都是下面的盘子大于上面的盘子。-HANOR demo program using VB create graphical interface to HANOR problems, that is, N dishes from one club to another on the above-throug
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-12
    • 文件大小:7168
    • 提供者:孙晨曦
  1. 经典汉诺塔问题c语言版

    0下载:
  2. 汉诺塔是初学数据结构的同学最头疼的问题,这里是一个用递归函数解决汉诺塔问题的经典c语言程序,里面有代码和执行文件。-HANOR data structure is that when the students most headaches, here is a solution using a recursive function HANOR a classic c language program, which has code an
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-12
    • 文件大小:8192
    • 提供者:
  1. hanoil

    0下载:
  2. 汉诺塔问题的代码 仅可做参考 嘻嘻^_^-HANOR the only available source reference hee hee ^ _ ^
  3. 所属分类:C#编程

    • 发布日期:2024-05-12
    • 文件大小:221184
    • 提供者:张明
  1. hanoie

    0下载:
  2. 很好的一个汉诺塔问题的解法,方法非常灵活有效-good HANOR a solution to the problem, the method is very flexible and effective
  3. 所属分类:进程与线程

    • 发布日期:2024-05-12
    • 文件大小:325632
    • 提供者:Jackon
  1. hnt

    0下载:
  2. 汉诺塔问题的另一种解法,方法非常灵活有效,运行效率高-HANOR of another solution, a very flexible and effective method, high efficiency operation
  3. 所属分类:界面编程

    • 发布日期:2024-05-12
    • 文件大小:59392
    • 提供者:Jackon
  1. hanoisea

    0下载:
  2. 该程序用非递归的方法实现了汉诺塔问题的求解。当源盘的数目较少时该算法的执行速度比递归算法快,但当源盘块数较多时递归算法执行速度块-the program with non- recursive method of the Tower of Hanoi problem solving. When the source of the relatively small number of sites at the time of the al
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-12
    • 文件大小:2048
    • 提供者:john
  1. AutomaticdemonstratioHanoiTower

    0下载:
  2. 汉诺塔自动演示 此程序经过编译后运行你可以对汉诺塔问题有更深刻的认识-HANOR demonstration of this process automatically after you run the compiler can HANOR issue in a more profound understanding of
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-12
    • 文件大小:11264
    • 提供者:cw
  1. Hanoi

    0下载:
  2. 采用递归循环的方法求解汉诺塔问题,程序很简洁也很实用-Using recursive method for solving the cycle of Tower of Hanoi problem, the procedure is very simple and practical
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2024-05-12
    • 文件大小:151552
    • 提供者:santa
  1. Hano

    0下载:
  2. 1.有三根杆子A,B,C。A杆上有若干碟子 2.每次移动一块碟子,小的只能叠在大的上面 3.把所有碟子从A杆全部移到C杆上 经过研究发现,汉诺塔的破解很简单,就是按照移动规则向一个方向移动金片: 如3阶汉诺塔的移动:A→C,A→B,C→B,A→C,B→A,B→C,A→C 此外,汉诺塔问题也是程序设计中的经典递归问题-1. Has three pole A, B, C. A pole has a
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-12
    • 文件大小:89088
    • 提供者:han
  1. hanoi

    0下载:
  2. 递归方法的汉诺塔问题,网上大多没有界面,这个有界面,有游戏功能!-Recursive method of Hanoi Tower problem, on-line do not have any interface, this interface has gaming features!
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-12
    • 文件大小:948224
    • 提供者:lizhaolong
  1. suanfashiyan

    0下载:
  2. 冒泡排序和汉诺塔问题的递归算法实验报告好东西来下载啊-Bubble Sort and Tower of Hanoi " problem of the recursive algorithm experimental reports, good things to download ah
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-12
    • 文件大小:54272
    • 提供者:sdfg
  1. Hamoi

    0下载:
  2. 采用递归思想解决汉诺塔问题:详细的步骤分析,算法分析和实现。采用C++语言,可加深对递归函数的理解和应用。-Using the recursive thinking to solve Towers of Hanoi problem: detailed steps analysis, algorithm analysis and implementation. Using C++ language, can deepen the unde
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-12
    • 文件大小:20480
    • 提供者:白兰鸽
  1. 1

    0下载:
  2. 汉诺塔问题的解决,C++递归实现汉诺塔问题(Solving Hanoi problem)
  3. 所属分类:Windows编程

  1. 汉诺塔

    0下载:
  2. C++实现的汉诺塔小游戏 汉诺塔:汉诺塔(又称河内塔)问题是源于印度一个古老传说的益智玩具。大梵天创造世界的时候做了三根金刚石柱子,在一根柱子上从下往上按照大小顺序摞着64片黄金圆盘。大梵天命令婆罗门把圆盘从下面开始按大小顺序重新摆放在另一根柱子上。并且规定,在小圆盘上不能放大圆盘,在三根柱子之间一次只能移动一个圆盘。(C++ implementation of the tower of Hanoi game Hanoi Hano
  3. 所属分类:游戏

    • 发布日期:2024-05-12
    • 文件大小:16315392
    • 提供者:calmcloud
« 12 3 4 5 6 7 8 9 10 ... 15 »

源码中国 www.ymcn.org