CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - Ackermann

搜索资源列表

  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. Ackermann for Data Structure -Ackermann for Data Structure
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:820byte
    • 提供者:王浩
  1. Ackermann

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

    • 发布日期:2014-01-17
    • 文件大小:713byte
    • 提供者:tony chen
  1. Ackermann

    0下载:
  2. 1928年,Wilhelm Ackermann (1896 - 1962,David Hilbert的学生) 发现x的y次幂的z-重积分 A(x,y,z)是递归的但不是原始递归的。Rosza Peter将A(x,y,z)简化到二元函数,初始条件由Raphael Robinson简化。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:5.83kb
    • 提供者:陈大哥
  1. Ackermann-nonrecursive

    0下载:
  2. Ackermann-nonrecursive.cpp, 艾克曼, 非递回
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1.26kb
    • 提供者:YC_CHIANG
  1. 19840356

    0下载:
  2. 阿克曼函数的非递归算法,一种非常经典的函数,数据结构中的典型函数-Ackermann function is non-recursive algorithm, a very classic function, data structure typical function
  3. 所属分类:Data structs

    • 发布日期:2017-03-23
    • 文件大小:544.4kb
    • 提供者:茅小祥
  1. Ackermann

    0下载:
  2. 本程序是用来产生Ackerman函数的一个小程序-This procedure is used to generate a small program Ackerman function
  3. 所属分类:Windows Develop

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

    0下载:
  2. mmodèle ackermann, modélisation
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-02
    • 文件大小:287.6kb
    • 提供者:oussama
  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. wind_power_in_power_systems

    0下载:
  2. wind power in power systems by Thomas Ackermann Wind energy is gaining increasing importance throughout the world. A very good reference for wind energy engineers.
  3. 所属分类:Energy industry

    • 发布日期:2017-05-21
    • 文件大小:6mb
    • 提供者:myc
  1. ackermann

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

    • 发布日期:2017-04-07
    • 文件大小:713byte
    • 提供者:tirta nahari
  1. Ackermann-Euracom-18x-Eprom-Firmware-Version-5D00

    0下载:
  2. Firmware for Ackermann/Euracom phone PBXs
  3. 所属分类:Other Embeded program

    • 发布日期:2017-03-28
    • 文件大小:375.13kb
    • 提供者:xA3
  1. ack

    0下载:
  2. Calculate the Ackermann function ACK ( m, n ) recursive functions.-Calculate the Ackermann function ACK ( m, n ) recursive functions. For m>=0, n>=0, ACK ( m, n ) is defined as: ACK ( 0, n ) =n+1 ACK ( m, 0) =ACK ( m-1,1 ) ACK ( m, n ) =ACK (
  3. 所属分类:Data structs

    • 发布日期:2017-11-06
    • 文件大小:761byte
    • 提供者:周杨
  1. src

    0下载:
  2. 汉诺塔问题以及阿克曼函数问题算法的实现 c++编写 数据结构小作业-The Towers of Hanoi problem Ackermann function problem algorithm c++ of writing the data structure operations
  3. 所属分类:Console

    • 发布日期:2017-11-27
    • 文件大小:1.03kb
    • 提供者:刘维孟
  1. Ackermann

    0下载:
  2. 包括阿克曼函数的递归实现和非递归实现,是学习数据结构的很好素材。-Including the realization of the Ackerman function of recursive and non-recursive implementation, good material for learning data structures
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-01
    • 文件大小:2.2kb
    • 提供者:wbo
  1. acker.zip

    0下载:
  2. ACKER Pole placement gain selection using Ackermann s formula. ,ACKER Pole placement gain selection using Ackermann s formula.
  3. 所属分类:matlab

    • 发布日期:2017-11-19
    • 文件大小:972byte
    • 提供者:Ake
  1. ackermann

    0下载:
  2. algoritmo de ackerman, por si lo necesitan
  3. 所属分类:assembly language

    • 发布日期:2017-04-11
    • 文件大小:1.34kb
    • 提供者:Maticifuentes
  1. obs_matlab

    0下载:
  2. MATLAB programs for Full state observer and reduced order state observer which is used in regulator system has the plant with Ackermann Formula. this code is used in control system engineering .
  3. 所属分类:matlab

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

    0下载:
  2. 用汇编语言实现的双递归函数 Ackerman函数 -In computability theory, the Ackermann function, named after Wilhelm Ackermann, is one of the simplest and earliest-discovered examples of a total computable function that is not primitive recursive. All primitive recursive
  3. 所属分类:assembly language

    • 发布日期:2017-04-10
    • 文件大小:549byte
    • 提供者:朱大
搜珍网 www.dssz.com