搜索资源列表
ACKFunction
- 实现阿克曼函数并统计递归调用次数 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
Ackermann
- Ackermann for Data Structure -Ackermann for Data Structure
Ackermann
- 此文件实现Ackerman函数的动态规划算法,在VC++6.0 下 编译通过
Ackermann
- 1928年,Wilhelm Ackermann (1896 - 1962,David Hilbert的学生) 发现x的y次幂的z-重积分 A(x,y,z)是递归的但不是原始递归的。Rosza Peter将A(x,y,z)简化到二元函数,初始条件由Raphael Robinson简化。
Ackermann-nonrecursive
- Ackermann-nonrecursive.cpp, 艾克曼, 非递回
19840356
- 阿克曼函数的非递归算法,一种非常经典的函数,数据结构中的典型函数-Ackermann function is non-recursive algorithm, a very classic function, data structure typical function
Ackermann
- 本程序是用来产生Ackerman函数的一个小程序-This procedure is used to generate a small program Ackerman function
ackermann
- mmodèle ackermann, modélisation
Ackerman
- 阿克曼函数(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
wind_power_in_power_systems
- 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.
ackermann
- ackerman for pid tuning
Ackermann-Euracom-18x-Eprom-Firmware-Version-5D00
- Firmware for Ackermann/Euracom phone PBXs
ack
- 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 (
src
- 汉诺塔问题以及阿克曼函数问题算法的实现 c++编写 数据结构小作业-The Towers of Hanoi problem Ackermann function problem algorithm c++ of writing the data structure operations
Ackermann
- 包括阿克曼函数的递归实现和非递归实现,是学习数据结构的很好素材。-Including the realization of the Ackerman function of recursive and non-recursive implementation, good material for learning data structures
acker.zip
- ACKER Pole placement gain selection using Ackermann s formula. ,ACKER Pole placement gain selection using Ackermann s formula.
ackermann
- algoritmo de ackerman, por si lo necesitan
obs_matlab
- 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 .
APFunction
- 用汇编语言实现的双递归函数 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