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

搜索资源列表

  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 nonrecursion 2.recursion
  3. 所属分类:语音合成与识别

    • 发布日期:2008-10-13
    • 文件大小:1447
    • 提供者:冷彦
  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 between turning!
  3. 所属分类:其它

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

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

    • 发布日期:2008-10-13
    • 文件大小:1097
    • 提供者:dfssd
  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, after but the grammar tree carrie
  3. 所属分类:编译器/词法分析

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

    0下载:
  2. The Chinese promises the tower question is the most classical recursion question, this question has designed this game, alternately plays by the user and automatically demonstrates two parts to be compose
  3. 所属分类:汇编语言

    • 发布日期:2008-10-13
    • 文件大小:12943
    • 提供者:fant
  1. chap2_11_RML

    0下载:
  2. 递归极大似然数估计,在实际通信系统仿真过程中非常有用-Recursion number of maximum likelihood estimate, in actual communication system simulation process is very useful
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:931
    • 提供者:tong
  1. matMultRecur

    0下载:
  2. this code is used for parallel programming(a matrix multiplication with recursion)
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:1156
    • 提供者:honda
  1. compiling

    0下载:
  2. 编译原理实验:词法分析、语法分析、语义分析,包含代码和报告、构建分析表、消除左递归、语法分析、流程图-Compiler Principle Experiment: lexical analysis, syntax analysis, semantic analysis, including code and reports, construction of the table, to eliminate left-recursion, parsing, flow chart
  3. 所属分类:Compiler program

    • 发布日期:2017-05-15
    • 文件大小:3873584
    • 提供者:xiedanfeng
  1. recursion

    0下载:
  2. delphi中如何用递归调用方式生成树形结构,树的级别不定;生成方法:首先声明树的结点,自定义树的结点内容,写一个递归函数,在窗体的显示事件里调用递归函数,实现树形结构的生成。-how in delphi to use the recursion transfer way production tree structure, tree s rank not to decide Production method: First stated that tree s point, from the
  3. 所属分类:Delphi VCL

    • 发布日期:2017-03-27
    • 文件大小:1628
    • 提供者:baige
  1. LL(1)

    0下载:
  2. LL(1)分析 写的语法分析程序,但是不能实现消除左递归,提取公因子-LL (1) analysis of written grammar analysis program, but can not eliminate the left recursion, extracting common factor
  3. 所属分类:Compiler program

    • 发布日期:2017-04-28
    • 文件大小:194183
    • 提供者:
  1. indirect_recursion

    0下载:
  2. 编译原理消除间接左递归。将结果存于文件中-Compiler to eliminate the principle of indirect left recursion. The results stored in the document
  3. 所属分类:Compiler program

    • 发布日期:2017-04-17
    • 文件大小:137634
    • 提供者:林臻
  1. xiaochuzuodigui

    0下载:
  2. 用于消除左递归的一个用C++语言实现的小程序。里面包含有详细的报告和源代码。-Used to eliminate the left recursion in a C++ language implementation with a small program. Which contains detailed reports and source code.
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:726414
    • 提供者:曾冬梅
  1. jisuansuanfa

    0下载:
  2. 主要描述递归的概念, 掌握设计有效算法的分治策略。 通过下面的范例学习分治策略设计技巧。-Will describe the concept of recursion to master the design of effective algorithm for sub-rule strategy. Examples of learning through the following sub-rule strategy of design skills.
  3. 所属分类:MPI

    • 发布日期:2017-04-16
    • 文件大小:226364
    • 提供者:ky
  1. diguixiajiang

    0下载:
  2. 递归下降的基本思想: 为每一个非终结符构造一个子程序,每一个子程序的过程体中按该产生式的候选项分情况展开,遇到终结符直接匹配,而遇到非终结符就调用相应非终结符的子程序。该分析从调用文法开始符号的子程序开始,直到所有非终结符都展开为终结符并得到匹配为止。若分析过程中达到这一步则表明分析成功,否则表明输入中有语法错误。递归下降分析对文法的限制是不能有公共左因子和左递归。由于文法是递归定义的,因此子程序也是递归的,被称为递归下降子程序。 -The basic idea of recursiv
  3. 所属分类:Compiler program

    • 发布日期:2017-03-22
    • 文件大小:1456
    • 提供者:WM
  1. XMLparserforc

    0下载:
  2. 将树形数据结构用于最小化DOM 模型XML 编解码器的开发。在解析XML 文本时,基于Expat 解释器将XML 字符串构造成树 状结构;编码时构造DOM 树结构,采用非递归深度优先法遍历树,将其串行化成XML 串。本编解码器解决了国际化语言关键问题,是 一个通用、高效的工业级XML 应用支撑模块。-This paper designs a DOM liked tree data structure for developing a minimal DOM based eXtended
  3. 所属分类:Compiler program

    • 发布日期:2017-04-06
    • 文件大小:66650
    • 提供者:czhui2000
  1. Recursion(complete)

    0下载:
  2. Recursion Program for Counting Looping
  3. 所属分类:MPI

    • 发布日期:2017-04-11
    • 文件大小:623
    • 提供者:Elite Liew
  1. Remove-left-recursion

    0下载:
  2. Compiler tech: Program To Remove Left Recursion From The Given Grammar
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:952
    • 提供者:jack
  1. Left-Recursion.cpp

    0下载:
  2. Left recursion removal in CFG
  3. 所属分类:Compiler program

    • 发布日期:2017-03-26
    • 文件大小:1031
    • 提供者:DJ
  1. Clip-file-recursion-replace-software

    0下载:
  2. 全局文本替换软件(可适用于android studio),软件递归指定文件夹中所有文件,并读取指定后缀名的文件内容,替换指定文本-Global text replacement software (can be applied to the android studio), software recursion to specify all files in the folder, and reads the suffix of the specified file content, repla
  3. 所属分类:ELanguage

    • 发布日期:2017-04-30
    • 文件大小:410096
    • 提供者:zzc
« 12 3 »
搜珍网 www.dssz.com