CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - ackerman

搜索资源列表

  1. ACKFunction

    1下载:
  2. 实现阿克曼函数并统计递归调用次数 Counting times of recursion calling 1. 问题描述 定义阿克曼递归函数: ACK(0,n)=n+1 n>=0 ACK(m,0)=ACK(m-1,1) m>=1 ACK(m,n)=ACK(m-1,ACK(m,n-1)) m,n>0 2. 基本要求 读入m、n,输出ACK(m,n)的值,并统计递归调用次数。-Ackermann achieve statistical a
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:8.55kb
    • 提供者:李昭明
  1. Ackermann

    0下载:
  2. 此文件实现Ackerman函数的动态规划算法,在VC++6.0 下 编译通过
  3. 所属分类:数据结构常用算法

    • 发布日期:2014-01-17
    • 文件大小:713byte
    • 提供者:tony chen
  1. 常见算法及函数源代码

    0下载:
  2. 算法设计与分析 1. 用直接递归方法计算n!: (2)通过键盘输入n的值,( 2. 用直接递归方法计算第n个Fibonacci数: 3. 用直接递归方法计算Ackerman函数: 4. 用直接递归方法给出n个元素的全排列: 8. 用直接递归方法求解Hanoi塔问题 ,Algorithm Design and Analysis 1. Using direct recursive meth
  3. 所属分类:数据结构常用算法

    • 发布日期:2017-03-27
    • 文件大小:4.91kb
    • 提供者:lilianjie
  1. Stack-examples

    0下载:
  2. 栈的几个应用举例——顺序栈、链栈结构定义与基本操作(SqStack_exercise.cpp,LinkStack_exercise.cpp),括号匹配(matching.cpp),表达式求值(evaluation.cpp),Ackerman递归函数的实现(Ackerman.cpp)-Stack a few application examples- the order of the stack, the stack structure is defined chain, and basic op
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:4.84kb
    • 提供者:
  1. ackerman

    0下载:
  2. 试验Ackerman函数,并且带有对此算法的一些分析,以及和另外算法的比较-Ackerman function tests, and with some analysis of this algorithm, as well as a comparison with another algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:25.13kb
    • 提供者:齐笑尘
  1. Ackerman

    0下载:
  2. 阿克曼函数(Ackerman)是非原始递归函数的例子;它需要两个自然数作为输入值,输出一个自然数。它的输出值增长速度非常高,仅是(4,3)的输出已大得不能准确计算。   Ackerman函数定义如下:   若m=0 返回n+1   若m>0且n=0 返回Ackerman(m-1,1)   若m>0且n>0 返回Ackerman(m-1,Ackerman(m,n-1)) -Ackermann function (Ackerman) examples of no
  3. 所属分类:Data structs

    • 发布日期:2017-03-23
    • 文件大小:7.49kb
    • 提供者:夏雪
  1. Ackerman

    0下载:
  2. 这是在VC环境下编写的一个数据结构的经典问题Ackerman问题-This is written in VC environment, the classic problem of a data structure problem Ackerman
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:518.51kb
    • 提供者:sunkang
  1. Ackerman

    0下载:
  2. 已知Ackerman函数定义如下: (1) 根据定义,写出它的递归求解算法; (2) 利用栈,写出它的非递归求解算法。 -Known Ackerman function is defined as follows: (1) By definition, a recursive algorithm to write it (2) the use of the stack, write its non-recursive algorithm.
  3. 所属分类:Data structs

    • 发布日期:2017-03-24
    • 文件大小:11.89kb
    • 提供者:冯灿灿
  1. Ackerman

    0下载:
  2. 用非递归实现ackerman函数的程序,反复对栈进行应用-Ackerman function with non-recursive implementation of the program, repeated application of the stack
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:884.36kb
    • 提供者:王奈
  1. Ackerman

    0下载:
  2. ackerman 函数的实现 数据结构与算法-ackerman function implementation
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:870.1kb
    • 提供者:rentianyi
  1. Ackerman

    0下载:
  2. 这是关于数据结构的一个算法,希望对大家有用-This is about the data structure of an algorithm, we want to be useful
  3. 所属分类:Data structs

    • 发布日期:2017-05-06
    • 文件大小:1.19mb
    • 提供者:zhangbiao
  1. ackerman2

    0下载:
  2. ackerman函数的非递归实现运用栈类进行实现,代码中包含了栈类代码-ackerman function of the use of non-recursive implementation of the stack class implementation code contains stack class code
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-10
    • 文件大小:1.23kb
    • 提供者:Lynn
  1. Ackerman

    0下载:
  2. Ackerman函数的递归实现和非递归实现-about Ackerman funtion
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-29
    • 文件大小:1.14kb
    • 提供者:王钰
  1. ackermann

    0下载:
  2. ackerman for pid tuning
  3. 所属分类:matlab

    • 发布日期:2017-04-07
    • 文件大小:713byte
    • 提供者:tirta nahari
  1. ackerman.c.tar

    0下载:
  2. ackerman en C, funciona en LINUX Debian wheezy
  3. 所属分类:Algorithm

    • 发布日期:2017-04-12
    • 文件大小:846byte
    • 提供者:katto
  1. 1205

    0下载:
  2. Descr iption 已知Ackerman函数定义(见课本)。 输入只有两个整数:m n。 要求输出A(m,n)。 Input Format 输入文件包括一行,两个整数,m和n。 Output Format 输出文件包括一行,A(m,n)的值。-Descr iption known Ackerman function definition (see the textbook). Enter only two integers: mn. Re
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:907byte
    • 提供者:zan
  1. work2_ackerman

    0下载:
  2. akerman函数的,基于递归和堆栈形式的阿克曼函数(ackerman function for begin learners)
  3. 所属分类:数据结构

    • 发布日期:2017-12-23
    • 文件大小:3.34mb
    • 提供者:maeac
搜珍网 www.dssz.com