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

搜索资源列表

  1. 一种分级检索MPEG视频的方法

    0下载:
  2. 提出了一种基于样本的分级检索 MPEG 视频的新方法:首先用I 帧的dct_dc_size 字段快速粗检,然后用断层摄影(tomography)法分析B 帧运动矢 量的时空分布特性以进一步缩小结果集,最后用DC 图像的精确匹配方法验证检索结果.试验结果表明,本方法 所需计算量较小,且可保证较高的检索精度.-presents a sample classification based on MPEG video retrieval of the new method : First o
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:501988
    • 提供者:隼鼻梁
  1. firstafollow

    0下载:
  2. 编译原理中,采用LL(1)语法分析法时 1.求每个文法符号的的first集 2.求每个非终结符的follow集-First set of compiler theory, LL (1) syntax analysis. Seeking each grammar symbol. Seeking of each nonterminal follow set
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-04
    • 文件大小:3740
    • 提供者:王焱
  1. forecast_analysis_chart_construction

    0下载:
  2. 编译原理中,采用LL(1)语法分析法时 1.求每个文法符号的的first集 2.求每个非终结符的follow集-First set of compiler theory, LL (1) syntax analysis. Seeking each grammar symbol. Seeking of each nonterminal follow set
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-22
    • 文件大小:3764
    • 提供者:王焱
  1. First-Follow-FIRSTVT-LASTVT

    0下载:
  2. 简单的First&Follow集的求取,可用于开发编译器-First & Follow simple set to strike, can be used to develop compiler
  3. 所属分类:Compiler program

    • 发布日期:2017-11-10
    • 文件大小:78357
    • 提供者:王先生
  1. First_Follow_FOR.NET

    0下载:
  2. .NET源码,First集与follow集和LL1文法的实现-. NET source code, First set and follow set and achieve LL1 grammar
  3. 所属分类:Compiler program

    • 发布日期:2017-11-23
    • 文件大小:3148029
    • 提供者:王先生
  1. LL1

    0下载:
  2. 编译原理中的LL1语法分析程序 包括消除左递归, First集和Follow集自动生成, 预测表自动生成, 对输入的句型进行分析。-Compiler theory LL1 syntax analysis procedures, including the elimination of left recursion, First Set and Follow automatically generated prediction table is generated automatically an
  3. 所属分类:Compiler program

    • 发布日期:2017-04-10
    • 文件大小:1462022
    • 提供者:gan
  1. yucefenxisuanfa

    0下载:
  2. 通过预测分析算法对语法进行分析(first集,follow集,预测分析表,预测分析总控程序)-Through predictive analysis algorithms to analyze the grammar (first set, follow set, predictive analysis table, predictive analytics Master Control Program)
  3. 所属分类:Compiler program

    • 发布日期:2017-05-06
    • 文件大小:1498340
    • 提供者:郭攀
  1. code

    0下载:
  2. 编译原理,预测分析器,可求出first集,follow集,并构造出LL(1)分析器-Compiler theory, prediction analyzer can be obtained first set, follow set, and construct LL (1) parser
  3. 所属分类:Compiler program

    • 发布日期:2017-05-09
    • 文件大小:1632645
    • 提供者:jue
  1. FLyuce

    0下载:
  2. 《编译原理》陈火旺版的预测分析程序的代码实现,主要步骤是从输入文法,先求first集和follow集,然后构造预测分析表,最后对文法进行预测分析。-" Compiler Principle" Code Chen Huo version of predictive analytics program implementation, the main steps the input grammar, seeking first set and follow the first s
  3. 所属分类:Compiler program

    • 发布日期:2017-04-26
    • 文件大小:229314
    • 提供者:StarrySky
  1. LL1

    0下载:
  2. 完成LL(1)语法分析器,包含FIRST集和FOLLOW集,预测分析表-LL (1) grammar analyzer, including FIRST and FOLLOW sets, forecast analysis table
  3. 所属分类:Compiler program

    • 发布日期:2017-04-29
    • 文件大小:136360
    • 提供者:王旺
  1. LL(1)文法的判断

    0下载:
  2. 一个程序,用于判定给定的文法是否为ll(1)文法。 实现了:1.文法的机内表示;2. FIRST集和FOllOW集的计算; 3. ll(1)预测分析表的构造。(1)对输入文法,它能判断是否为ll(1)文法,若是,则转(2);否则报错并终止; (2)输入已知文法,由程序自动生成它的ll(1)分析表; (3)对于给定的输入串,应能判断识别该串是否为给定文法的句型。
  3. 所属分类:磁盘编程

  1. slrfenxi

    0下载:
  2. slr分析程序,能够输出终结符,slr分析表,输出follow集和first集-slr analysis procedures, including follow set, terminator
  3. 所属分类:CSharp

    • 发布日期:2017-04-15
    • 文件大小:7335
    • 提供者:Mr张
  1. LL1

    0下载:
  2. 求LL1文法的first集,follow集以及文法的分析构造表。-Seeking LL1 grammar first set, follow sets and grammar analysis to construct the table.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:1449
    • 提供者:刘望平
  1. analysis100

    0下载:
  2. 输入一个文法,可得到文法的FIRST集、FOLLOW集、SELECT集,可以判断文法是否为LL(1)文法,并可求出文法的预测分析表,以及串的自顶向下的分析过程。输出很清晰。-Enter a grammar, the grammar of the FIRST sets available, FOLLOW sets, SELECT set, you can determine whether the grammar LL (1) grammar, and can find the grammar o
  3. 所属分类:Applications

    • 发布日期:2017-04-14
    • 文件大小:3185
    • 提供者:ji08831
  1. 细细品味Hadoop_Hadoop集群CentOS安装配置

    0下载:
  2. 细细品味Hadoop系列第一期,主要介绍Centos的安装和配置。(Savor the first phase of the Hadoop series, mainly on the installation and configuration of Centos.)
  3. 所属分类:其他

    • 发布日期:2017-12-27
    • 文件大小:1785856
    • 提供者:枫雨桐璐
  1. 实验2

    0下载:
  2. LL1文法分析器,可以识别LL1文法,求出first集与follow集,生成分析表。(LL1 grammar analyzer, you can identify the LL1 grammar, find the first set and follow set, generate an analysis table.)
  3. 所属分类:其他

    • 发布日期:2018-01-01
    • 文件大小:415744
    • 提供者:UUUsb
  1. nppl

    0下载:
  2. 本程序包括求First集和Follow集的VC++原程序,已经编译过可以直接使用,()
  3. 所属分类:其他小程序

    • 发布日期:2018-01-08
    • 文件大小:26624
    • 提供者:zpecbfy
  1. 627327

    0下载:
  2. 本程序包括求First集和Follow集的VC++原程序,已经编译过可以直接使用,()
  3. 所属分类:Windows编程

  1. VOGFWFA

    0下载:
  2. 可以实现求First集,Follow集,Select集,分析表,分析栈()
  3. 所属分类:串口编程

    • 发布日期:2018-05-03
    • 文件大小:155648
    • 提供者:Guneriuvd
  1. UCI的光学字符识别数据集

    1下载:
  2. 其目标是将大量黑白矩形像素显示器中的每一个识别为英文字母中的26个大写字母之一。字符图像基于20种不同的字体,并且这20种字体中的每个字母随机失真以产生20,000个独特刺激的文件。每个刺激被转换成16个基本的数字属性(统计矩和边缘计数),然后将其缩放以适合从0到15的整数值范围。我们通常在前16000个项目上进行训练,然后使用结果模型预测剩余的4000个字母类别。请参阅上面引用的文章以获取更多详细信息。(The objective is to identify each of a large
  3. 所属分类:图形/文字识别

    • 发布日期:2018-05-06
    • 文件大小:534528
    • 提供者:那拍拍
« 1 2 3 45 6 7 8 9 10 ... 17 »
搜珍网 www.dssz.com