CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 预测分析表

搜索资源列表

  1. predictive-analysis-

    0下载:
  2. 编译原理预测分析表 求first follow集-Compiler theory prediction table seeking first follow set
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:4582
    • 提供者:xiao
  1. Anlysis

    0下载:
  2. LR(1)预测分析表 java实现源代码-LR (1) forecast analysis table java source code
  3. 所属分类:Java Develop

    • 发布日期:2017-04-07
    • 文件大小:1595
    • 提供者:崔程序
  1. ll1

    0下载:
  2. LL(1)文法的实现,主要包括文法的读取、消除左递归、求First集、Follow集、Select集,生成预测分析表,对给定句子分析是否符合文法。-LL (1) grammar implementations, read mainly include grammar to eliminate left recursion, seeking First set, Follow Set Select set generate predictive analysis table, analysis m
  3. 所属分类:Compiler program

    • 发布日期:2017-11-07
    • 文件大小:2285014
    • 提供者:czl
  1. analysis

    1下载:
  2. 编写语法分析程序,实现对算术表达式的语法分析。要求所分析算术表达式由如下的文法产生: E->E+T|E-T|T T->T*F|T/F|F F->id|(E)|num 实验要求:在对输入表达式进行分析的过程中,输出所采用的产生式。 编程实现算法4.2,为给定文法自动构造预测分析表。 编程实现算法4.1,构造LL(1)预测分析程序。-Write a parser, parsing arithmetic expressions. Requirem
  3. 所属分类:Compiler program

    • 发布日期:2015-07-01
    • 文件大小:5120
    • 提供者:
  1. yufa_fenxi

    0下载:
  2. 加减乘除四则运算的语法分析器,采用自上而下的预测分析表分析方法-Four operations addition, subtraction, multiplication and division parser using a top-down forecast analysis table analysis method
  3. 所属分类:Compiler program

    • 发布日期:2017-12-02
    • 文件大小:2562
    • 提供者:王旭
  1. Compile

    0下载:
  2. LL1语法分析程序,输入文法表达式能够自动输出预测分析表,词法分析器-LL1 parser input grammar expression can automatically output the prediction analysis table to determine whether the LL1 grammar, you can then enter any of a sentence, and then analyze them gives a detailed analysis
  3. 所属分类:Compiler program

    • 发布日期:2017-11-25
    • 文件大小:42614
    • 提供者:搁浅时光
  1. c

    0下载:
  2. 为给定编程语言设计语法分析器其内容包含LL(1)预测分析表、语法分析器的处理流程等-program  compoundstmt stmt  ifstmt | whilestmt | assgstmt | compoundstmt compoundstmt  { stmts } stmts  stmt stmts |  ifstmt  if ( boolexp
  3. 所属分类:assembly language

    • 发布日期:2017-11-09
    • 文件大小:10862
    • 提供者:shw
  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. rq

    0下载:
  2. 根据给定文法,先求出first集合、follow集合和select集合,构造预测分析表(要求预测分析表输出到屏幕或者输出到文件);-According to the given grammar, first find the first set, follow the collection and select a collection, structure prediction analysis table (which requires prediction of the table to
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-14
    • 文件大小:5018
    • 提供者:WhieHou
  1. rq

    0下载:
  2. 根据给定文法,先求出first集合、follow集合和select集合,构造预测分析表(要求预测分析表输出到屏幕或者输出到文件);-According to the given grammar, first find the first set, follow the collection and select a collection, structure prediction analysis table (which requires prediction of the table to
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-14
    • 文件大小:5065
    • 提供者:sackedMor
  1. LL1

    0下载:
  2. 输入已经消除左递归的以及提取公共左因子的LL(1)文法,再输入相应的表达式,若分析成功,则在递归输出过程中输出"acc",若不成功,则有相应的报错以及位置指名。注意,要把同一个非终结符的产生式分成单个输入。它会自动计算first,follow,预测分析表的构造,但并不输出。-Input has to eliminate left recursion and extract the public left factor of LL (1) grammar, then input the corre
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-14
    • 文件大小:3357648
    • 提供者:何玉林
  1. (first-follow-select)

    0下载:
  2. 构造LL(1)语法分析程序,任意输入一个文法符号串,并判断它是否为文法的一个句子。程序要求为该文法构造预测分析表,并按照预测分析算法对输入串进行语法分析,判别程序是否符合已知的语法规则,如果不符合(编译出错),则输出错误信息-Construct LL (1) parser, enter an arbitrary string of grammar symbols, and determine if it is a sentence grammar. Procedural requirements
  3. 所属分类:Compiler program

    • 发布日期:2017-04-28
    • 文件大小:203680
    • 提供者:张丽
  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. 基于vc++的分来了编程,文件录入所需分析文法,生成预测分析表,输入字符串自动执行并输出分析过程-Based on the vc++ of the points to the programming, file input required analysis of grammar, generate the forecast analysis table, the input string automatically and output analysis process
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-29
    • 文件大小:263890
    • 提供者:zhangxuan
  1. suanfuyoux

    0下载:
  2. 基于vc++的算符优先编程,文件录入所需分析文法,生成预测分析表,输入字符串自动执行并输出分析过程-Vc++ based operator priority programming, file input required analysis of grammar, generate a forecast analysis table, the input string automatically s and output analysis process
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-29
    • 文件大小:262090
    • 提供者:zhangxuan
  1. yufafenxi

    0下载:
  2. 基于vc++的语法分析编程,文件录入所需分析文法,生成预测分析表,输入字符串自动执行并输出分析过程-Based on vc++ syntax analysis programming, file input required analysis grammar, generate forecast analysis table, input strings automatically and output analysis process
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-07
    • 文件大小:1142966
    • 提供者:zhangxuan
  1. LL(1)文法的判断

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

  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. predictive-analysis-grammar

    0下载:
  2. 编译原理中写入预测分析表基于栈实现语法的预测分析法-Compiler theory written stack-based predictive analysis tables enable predictive analysis grammar
  3. 所属分类:Other systems

    • 发布日期:2017-04-30
    • 文件大小:440958
    • 提供者:潇潇
« 1 2 3 4 56 7 »
搜珍网 www.dssz.com