CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - LL(1)文法

搜索资源列表

  1. yufafenxi.rar

    0下载:
  2. 语法分析器是函数绘图语言解释器的核心,因此语法分析器的构造是整个解释权构造的关键。语法分析器的构造分为两个重要步骤:规定语言的文法和根据文风编写程序。由于采用递归下降子程序方法,因此在文法的设计上要求是LL(1)文法。具体到此绘图语言,需要构造语法树的语言结构仅限于表达式,因为后继语义处理需要对表达式求值,而对语法树进行遍历即可得到表达式的值。 我们最终构造的是递归下降的语法分析器,要求文法是LL(1)文法,因此需要对二义文法进行改造:即先将文法改写为非二义文法,消除左递归,提取公共左因子,
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:3155
    • 提供者:qj
  1. yufafenxi

    1下载:
  2. 语法分析程序 利用C++(或C)编制确定的自顶向下预测分析语法分析程序,并对简单语言进行语法分析。 待分析的简单语言的语法若文法G[ E]为: (1) E –> TE’ (2) E’ –> +TE’ (3) E’ –> e (4) T –> FT’ (5) T’ –> *FT’ (6) T’ –> e (7) F –> (E) (8) F –> i 实验说明 具体要求如下:
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:13133
    • 提供者:chenxue
  1. lll

    0下载:
  2. 实现了LL(1)文法分析,包括构造First、Follow集、预测分析表,并可检查输入串是否被接受。-The implementation of LL(1) analysis, including constructing the First, Follow set, Predictive Parsing Table. It can also test a string whether it is accepeted.
  3. 所属分类:Compiler program

    • 发布日期:2017-03-23
    • 文件大小:229122
    • 提供者:sunli
  1. ll(1)fenxiqi

    0下载:
  2. 你可以任意输入合法文法,给定任意的句子,将会分析出这个句子是不是文法的的句子-You can enter any legal grammar, given any sentence, it will analyze the sentence is not grammatical sentences! !
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:2916
    • 提供者:王莎
  1. WHILE

    0下载:
  2. WHILE循环语句的翻译程序设计(LL(1)法、输出四元式)1 系统描述(问题域描述); 2 文法及属性文法的描述; -WHILE loop translation of program design (LL (1) method, the output quaternion type) a system descr iption (problem domain descr iption) two grammar and attribute grammar descr iption
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:32002
    • 提供者:long
  1. LL1

    0下载:
  2. LL(1)文法分析程序,输入一个写入了一个LL1文法的文件名,运行程序,根据提示执行-LL (1) grammar analysis program, enter a LL1 write a grammar file name, run the program, according to prompt the implementation of
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:3505
    • 提供者:孙闲逸
  1. Cpp1

    0下载:
  2. 编译原理LL(1)文法分析器,大家赶紧来抢咯,先来先得-Compilation Principle LL (1) grammar analyzer, we hurriedly taking away pyronaridine, first-come, first served
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:874
    • 提供者:zp
  1. llApp(FR)

    0下载:
  2. ll(1)文法,First集,Follow集。预测分析表-ll (1) grammar, First Set, Follow sets. Forecast Analysis
  3. 所属分类:Compiler program

    • 发布日期:2017-04-25
    • 文件大小:18528
    • 提供者:menglusi
  1. syntax

    0下载:
  2. 1)对输入文法,它能判断是否为LL(1)文法,若是,则转(2);否则报错并终止; (2)输入已知文法,由程序自动生成它的LL(1)分析表; (3)对于给定的输入串,应能判断识别该串是否为给定文法的句型。 -。
  3. 所属分类:Windows Develop

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

    0下载:
  2. 给出给定LL(1)文法的FIRST和FOLLOW集,求出相应的分析表以及对给定字符串进行分析,判断是否属于该文法 -Give a given LL (1) grammar of the FIRST and FOLLOW sets, calculated the corresponding analysis table, as well as an analysis of the given string to determine whether or not belong to the gram
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-15
    • 文件大小:5337
    • 提供者:weilinquan
  1. ll(1)

    0下载:
  2. llr(1)C语言文法分析器,c语言写的,可以运行的哈-llr (1) C language grammar parser, c language, and can run the Kazakhstan
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:26662
    • 提供者:zzr
  1. LL1

    0下载:
  2. 一个用LL(1)文法的词法和语法分析器,-One with LL (1) grammar and syntax of the lexical analyzer,
  3. 所属分类:Compiler program

    • 发布日期:2017-04-07
    • 文件大小:213759
    • 提供者:yyx
  1. LL(1)yucefenxi

    0下载:
  2. 编译原理LL1预测分析程序。编写一通用的预测法分析程序,要求有一定的错误处理能力,出错后能够使程序继续运行下去,直到分析过程结束。可通过不同的文法(通过数据表现)进行测试。-Forecast for Compilation Principle LL1 parser. Forecast for the development of a common analysis procedures, requires a certain degree of error-handling capabiliti
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:99827
    • 提供者:David
  1. LL1wenfapanding

    0下载:
  2. LL(1)文法使用的是确定的自顶向下的分析技术。LL(1)的含义是:第一个L表明自顶向下分析是从左向右扫描输入串,第2个L表明分析过程中将使用最左推导,1表明只需向右看一个符号便可决定如何推导,即选择哪个产生式(规则)进行推导。-LL (1) grammar is used to determine the top-down analysis techniques. LL (1) the meaning is: the first show that L is top-down analysis
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:284823
    • 提供者:小江
  1. 22

    0下载:
  2. 编译原理条件语句翻译的实现使用LL(1)文法-Translation of the principle of conditional statements to compile the realization of the use of LL (1) grammar
  3. 所属分类:Compiler program

    • 发布日期:2017-04-06
    • 文件大小:86590
    • 提供者:周折
  1. 11

    0下载:
  2. if-else条件语句翻译,使用LL(1)文法,中间产生式为四元式-if-else conditional statements translation, the use of LL (1) grammar, the middle of production for the four-type
  3. 所属分类:Compiler program

    • 发布日期:2017-04-24
    • 文件大小:105832
    • 提供者:周折
  1. 33

    0下载:
  2. if-else条件语句翻译,使用LL(1)文法,中间产生式为四元式-if-else conditional statements translation, the use of LL (1) grammar, the middle of production for the four-type
  3. 所属分类:Compiler program

    • 发布日期:2017-05-07
    • 文件大小:1033112
    • 提供者:周折
  1. Compiler

    0下载:
  2. if-else条件语句翻译,使用LL(1)文法-if-else conditional statements translation, the use of LL (1) grammar
  3. 所属分类:Compiler program

    • 发布日期:2017-05-07
    • 文件大小:1084135
    • 提供者:周折
  1. ccc

    0下载:
  2. DO—WHILE 语句的翻译程序(使用LL(1)文法输出四元式)-DO-WHILE statement translation process (the use of LL (1) grammar output quaternion type)
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:460728
    • 提供者:陈杰
  1. java

    0下载:
  2. 用java编写的一个程序,实现功能while的ll(1)文法,输出四元式-ll(1)
  3. 所属分类:Java Develop

    • 发布日期:2017-04-01
    • 文件大小:204269
    • 提供者:smile
« 1 2 3 4 5 67 8 9 10 11 12 »
搜珍网 www.dssz.com