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

搜索资源列表

  1. Recursion.rar

    0下载:
  2. 快速DCT变换 迭代算法
  3. 所属分类:数值算法/人工智能

    • 发布日期:
    • 文件大小:937
    • 提供者:
  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
    • 文件大小:8753
    • 提供者:李昭明
  1. BST - Bina2889710132001

    0下载:
  2. Binary Search Tree - with additional recursion functions (smallest, parent & successor) etc
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:230037
    • 提供者:sgzhang0180
  1. Recursion.rar

    0下载:
  2. 快速DCT变换 迭代算法, Fast DCT transformation iteration algorithm
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-11-08
    • 文件大小:1208
    • 提供者:周辉
  1. nijuzheng 求矩阵的逆矩阵

    1下载:
  2. 求矩阵的逆矩阵,不用递归,就可输出任何输入矩阵的逆矩阵。用C++写的。算法思路绝对清晰易懂。-Find inverse of a matrix, without recursion, can you export any of the input matrix matrix. Written in C++. Algorithm ideas absolutely lucid.
  3. 所属分类:数学计算/工程计算

    • 发布日期:2016-01-27
    • 文件大小:2048
    • 提供者:guiyongmao
  1. dashuxiangcheng

    0下载:
  2. 利用分治方法设计实现大整数乘法的递归算法-Using the method of big integer partition design and realize the recursion algorithm square
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-28
    • 文件大小:563
    • 提供者:曹萌萌
  1. HeapPermute

    0下载:
  2. 一个很快的全排列的算法,使用了递归,附上证明-A fast algorithm for the entire array, use the recursion, attach proof
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:152907
    • 提供者:左庆
  1. homework1

    0下载:
  2. 组合问题递归求解。求n个数取r个数的所有组合结果-Recursion to solve combinatorial problems. N r number of requirements to take the number of results for all combinations
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1136613
    • 提供者:Squidward
  1. recursion

    0下载:
  2. 经典递归算法的C源码实现“迷宫求解”和“图像去噪音的问题”。-Classical recursive algorithm of C source code to achieve "maze solving" and "clean up the noise of images".
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-29
    • 文件大小:2642
    • 提供者:jiangshifeng
  1. recursion

    0下载:
  2. 递归,是函数实现的一个很重要的环节,很多程序中都或多或少的使用了递归函数。递归的意思就是函数自己调用自己本身,或者在自己函数调用的下级函数中调用自己。 递归之所以能实现,是因为函数的每个执行过程都在栈中有自己的形参和局部变量的拷贝,这些拷贝和函数的其他执行过程毫不相干。这种机制是当代大多数程序设计语言实现子程序结构的基础,是使得递归成为可能。-Recursion, is a function to achieve a very important part of many programs
  3. 所属分类:matlab

    • 发布日期:2017-04-03
    • 文件大小:2973
    • 提供者:sulihao
  1. leftrecursion

    0下载:
  2. code for left recursion in compilers.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-13
    • 文件大小:1850
    • 提供者:anitha
  1. Recursion

    0下载:
  2. To calculate using recursion, expression sqrt(6+2*sqrt(7+3*sqrt(8+4*sqrt(9+-To calculate using recursion, expression sqrt(6+2*sqrt(7+3*sqrt(8+4*sqrt(9+...))))
  3. 所属分类:Algorithm

    • 发布日期:2017-03-28
    • 文件大小:240449
    • 提供者:Alex
  1. binary-with-recursion

    0下载:
  2. its about the binary recursion
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:234873
    • 提供者:Ahmed Dildar
  1. recursion

    0下载:
  2. 根据Kurse版数据结构改成的课件。此章包括: 1、递归的概念 2、递归函数的设计 3、递归过程与递归工作栈 4、递归过程的非递归化 -According to the data structure into Kurse version of the courseware. This chapter includes: 1, 2 the concept of recursion, recursive functions of design 3, the recursiv
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:270547
    • 提供者:黄蔼婧
  1. RECURSION

    0下载:
  2. this C++ source is basically can be used for understanding the basics of recursion.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-07
    • 文件大小:1950
    • 提供者:Faiz
  1. recursion-in-the-expert-systems

    0下载:
  2. 在智能故障诊断中, C(C++)语言具有多方面优于传统人工智能语言(如LISP、PROLOG)的特性, 它对递归的支持使得用 其来开发故障诊断专家系统成为可能。本文研究了故障诊断专家系统开发中用到的递归方法及其基于C(C++)的实现, 具体 包括: 动态数据库设计中结构体的递归定义, 推理机设计中函数的递归调用等。针对知识推理中易出现的“循环递归”问题, 提出了一种基于“因果网络直观图”的解决方法。-C ( C++ )language possesses characteristic
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-27
    • 文件大小:54504
    • 提供者:陈金星
  1. Binary-tree-traversal-of-recursion

    0下载:
  2. 【二叉树遍历的递归算法实现】 操作:根据提示输入相应数据实现各种功能 函数:菜单函数(menu) 前序建立二叉树(Crt_BinTree) 访问结点(Visit) 前序遍历(Pretraverse) 中序遍历(Intraverse) 后序遍历(Suctraverse) 删除树(Destory) 操作函数(perform)Pretraverse 主函数(main) 说明:结点数据初始为char型,但可在前面代码部分修改 成其他类型,
  3. 所属分类:Data structs

    • 发布日期:2017-03-22
    • 文件大小:1611
    • 提供者:
  1. recursion

    0下载:
  2. 用递归实现n!另外一个是实现数的乘法,最后输出-recursion inVC++
  3. 所属分类:Algorithm

    • 发布日期:2017-05-12
    • 文件大小:2779078
    • 提供者:刘微
  1. Recursion

    0下载:
  2. netbeans project on recursion complete with form/gui
  3. 所属分类:Data structs

    • 发布日期:2017-12-04
    • 文件大小:29945
    • 提供者:jen
  1. integral--interpolation--recursion

    0下载:
  2. 数值分析函数积分插值法递推公式精确到0.001-integral interpolation recursion
  3. 所属分类:Algorithm

    • 发布日期:2017-12-05
    • 文件大小:32051
    • 提供者:常龙
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com