搜索资源列表

  1. Recursion.rar

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

    • 发布日期:2024-05-20
    • 文件大小:937
    • 提供者:
  1. 换位递归

    0下载:
  2. 此程序是用排序实现换位递规的的版本, 对程序的操作有一定的帮助作用-This program realizes the conversion recursion by sorting, making some use to operation of program.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:880
    • 提供者:里拨
  1. lhh5

    0下载:
  2. 动态数组 用函数递归和非递归的方法求两个整数的最大公约数-Dynamic array, compute the largest common divisor of two intergal by recursion and non-recursion.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:1126
    • 提供者:劳伦斯
  1. e34

    0下载:
  2. 这是用vc++编写的程序,在语音识别中经常用用到,是语音识别的第一步:time alignment. 分别用两种方式完成:1.非递归2.递归-This a vc++ program which is useful in voice recognizing and it is also the basic of the voice recognizing .I use two ways to accomplish it:1 nonrecu
  3. 所属分类:语音合成与识别

    • 发布日期:2008-10-13
    • 文件大小:1447
    • 提供者:冷彦
  1. 如何返回目录大小

    0下载:
  2. 用C#写的返回目录大小(包括子目录) 用到递归,速度一般-written in C# size of the back catalog (including subdirectories) uses recursion, the pace
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:811
    • 提供者:胡磊
  1. lianliankan1

    0下载:
  2. 利用递归来求的,其实连连看的搜索算法也就是搜索从一个点到另外一个点的不超过两次转弯的最短距离!-use recursion to seek the 1000 block of Terry Avenue fact, the search algorithm is a search from one point to another point of not more than twice the minimum distance betw
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2702
    • 提供者:潘洪峰
  1. ACKFunction

    0下载:
  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)的值,并统计递归调用次数。-A
  3. 所属分类:其它资源

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

    0下载:
  2. 在二叉搜索树上删除一个有两个子女的结点时,可以采用以下三种方法: (1) 用左子树TL上具有最大关键码的结点X顶替,再递归地删除X。 (2) 交替地用左子树TL上具有最大关键码的结点和右子树TR上具有最小关键码的结点顶替,再递归地删除适当的结点。 (3) 用左子树TL上具有最大关键码的结点或者用右子树TR上具有最小关键码的结点顶替,再递归地删除适当的结点。可随机选择其中一个方案。 -two forks in sear
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1097
    • 提供者:dfssd
  1. sequential_recursion_search

    0下载:
  2. c code for sequencial recursion search -c code for sequencial recursion search
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:851
    • 提供者:学学
  1. changyongshuanfa.pdf

    0下载:
  2. 常用算法的C语言实现方法,如迭代法,穷搜法,递推法等等。-commonly used algorithm in C language, such as iterative method, Anything, recursion, and so on.
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:240696
    • 提供者:杨洋
  1. 消除左递归1

    0下载:
  2. 对给定的文法消除左递归。- To the grammar which assigns eliminates the left recursion.
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:1469
    • 提供者:刘远兴
  1. 消除左递归得到后缀式

    0下载:
  2. 解法:对原文法消除左递归,根据消除左递归后的等价文法建立语法树,而后对此语法树 进行后根遍历,即可得到后缀式.- Solution: Eliminates the left recursion to the original grammar, after equal in value grammar establishment grammar tree which eliminates the left recursion, aft
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:2219
    • 提供者:刘远兴
  1. BST - Bina2889710132001

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

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

    0下载:
  2. This a small program which scans a particular section of your hard disk ( a tree) using recursion and returns information like the total number of files, folders, used disk space in that tree.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:150633
    • 提供者:~{AVU}=\\~}
  1. hanno

    0下载:
  2. 这是一个汉诺塔游戏的原代码,tc环境.可是图型界面的哦~~,不要认为是一般的递归了!-HANOR the original game code, tc environment. However, the map-based interface ~ ~ Oh, do not believe that the general recursion!
  3. 所属分类:游戏

    • 发布日期:2008-10-13
    • 文件大小:5787
    • 提供者:张秋水
  1. TreeListRecursion

    0下载:
  2. This article is a tree list recursion.
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:33241
    • 提供者:zhb
  1. 贴片法画球(OpenGL)

    0下载:
  2. 不是用递归,改用贴片法。也是很基本的离散方法-not use recursion using the patch method. Only basic discrete methods
  3. 所属分类:OpenGL

    • 发布日期:2008-10-13
    • 文件大小:5698
    • 提供者:q沙子
  1. Recursion

    0下载:
  2. Recursion program to illustrate how recursion work
  3. 所属分类:打印编程

    • 发布日期:2024-05-20
    • 文件大小:25600
    • 提供者:amany
  1. 02 - Recursion

    0下载:
  2. recursion divides a problem into smaller problems, and the smaller problems are of exactly the same type as the original problem
  3. 所属分类:文档资料

    • 发布日期:2024-05-20
    • 文件大小:144384
    • 提供者:jjliang
  1. DecToBinary_Recursive

    0下载:
  2. Visual Basic 递归 十进制转化为二进制(Recursion Convert Denary To Binary)
  3. 所属分类:其他小程序

    • 发布日期:2024-05-20
    • 文件大小:55296
    • 提供者:TomPlusJerry
« 1 2 34 5 6 7 8 9 10 ... 26 »

源码中国 www.ymcn.org