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

搜索资源列表

  1. whale-0.3.2-src.zip

    0下载:
  2. Complete support for EBNF notation; Object-oriented parser design; C++ output; Deterministic bottom-up "shift-reduce" parsing; SLR(1), LALR(1) and LR(1) table construction methods; Automatic parse tree creation; Possibility to output pars
  3. 所属分类:编译器/词法分析

    • 发布日期:
    • 文件大小:215.03kb
    • 提供者:
  1. SLRbyHune

    0下载:
  2. 用SLR分析法实现的语法分析,先用初版.exe生成符号表和token字,然后进行分析,action表程序自动生成-SLR analysis method used to achieve the syntax analysis, use the first edition. Exe Generation symbol table and token characters, Then the analysis, action automatically generated table
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:79.05kb
    • 提供者:胡恩
  1. LR0

    7下载:
  2. (1)构造文法G的LR(0)项目 (2)构造文法G的LR(0)项目集规范族及识别活前缀的DFA (3)证明文法G不是LR(0)文法而是SLR(1)文法,并构造SLR(1)分析表 (4)设计LR语法分析程序,且能输出分析过程 (5)列举两个例子测试语法分析程序(识别失败一例,识别成功一例,后者推导步骤不得少于10步) -(1) construct grammar G of the LR (0) item (2) construct grammar G of the LR (0)
  3. 所属分类:Compiler program

    • 发布日期:2016-01-21
    • 文件大小:44.31kb
    • 提供者:wolf
  1. whale-0.3.2-src

    0下载:
  2. Complete support for EBNF notation; Object-oriented parser design; C++ output; Deterministic bottom-up "shift-reduce" parsing; SLR(1), LALR(1) and LR(1) table construction methods; Automatic parse tree creation; Possibility to output parse tree in XM
  3. 所属分类:Compiler program

    • 发布日期:2017-11-09
    • 文件大小:215.33kb
    • 提供者:none
  1. LL1

    0下载:
  2. It s aLL1 implementation of slr table
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:841byte
    • 提供者:saumya
  1. slr(1)

    1下载:
  2. SLR(1)分析表的构造,编译原理实验会用到-SLR (1) analysis table of the structure, principle of the experiment will be used to compile
  3. 所属分类:Windows Develop

    • 发布日期:2016-01-27
    • 文件大小:314.1kb
    • 提供者:朱涛
  1. SLR(1)

    1下载:
  2. SLR(1)分析表分析法,给出一个分析表含action和goto表,然后对给出的语句进行语法分析,规约判断!-SLR (1) analysis table analysis, give an analysis table with action and goto tables, and then parsing the statements given in the statute to judge!
  3. 所属分类:Compiler program

    • 发布日期:2016-06-20
    • 文件大小:535.5kb
    • 提供者:肖琴琴
  1. p3

    0下载:
  2. 采用C#编写的编译器,只是原理性说明,采用SLR表分析,最终生成4元式和符号表 本编译器是语法无关的,即能够通过文本随时重新编辑语法-Written by C# compiler, only principle of explanation, using SLR table analysis, the final generation 4 yuan type and symbol table of the compiler is syntax independent, that is, at
  3. 所属分类:MacOS develop

    • 发布日期:2017-03-30
    • 文件大小:124.59kb
    • 提供者:wxj
  1. SLR1

    1下载:
  2. 在VC下打开LRTrans1.dsp,阅读工程LRTrans1,LRTrans1为一个加、乘(适当扩充可为四则)运算表达式的SLR语法分析器,规定其文法如下: 文法3: (0) S ->E (1) E->E+E (2) E->E*E (3) E->(E) (4) E->i 经分析其SLR(1)分析表如下(分析表按“操作符运算优先级和运算符的结合率”方法解决冲突——*优先集高于+,*和+的结合率均为左结合) -In
  3. 所属分类:Compiler program

    • 发布日期:2016-06-20
    • 文件大小:13kb
    • 提供者:chivas
  1. grammar

    0下载:
  2. SLR语法分析器,自动生成。生成项目集,求First集,求Follow集,生成goto表和action表。-SLR parser, automatically generated. Build the project set, First set of requirements, seeking Follow sets, action table and goto table generation.
  3. 所属分类:STL

    • 发布日期:2017-04-02
    • 文件大小:49.47kb
    • 提供者:zhangqida
  1. SLR

    0下载:
  2. 编译原理实验题目之构造文法的SLR分析表-Compiler construction principle experiment grammatical subject of the analysis table SLR
  3. 所属分类:assembly language

    • 发布日期:2017-03-29
    • 文件大小:17.33kb
    • 提供者:tyoung
  1. SLR

    0下载:
  2. SLR分析器SLR语法分析器,能求出FIRST、FOLLOW 集和构造出SLR分析表,出入一个句子,能动态演示匹配过程。(-The the SLR parser SLR parser can be obtained FIRST and FOLLOW sets and construct the SLR analysis table, and out of a sentence, dynamic presentation of the matching process. (
  3. 所属分类:assembly language

    • 发布日期:2017-11-27
    • 文件大小:594.61kb
    • 提供者:杨程
  1. shiyan3

    0下载:
  2. ,熟悉分析过程,注意在构造表2时依据“操作符运算优先级和运算符的结合率”原则解决冲突。(2)思考:如要将程序改成SLR四则运算语法分析器,应如何修改文法3为文法4(文法4应还支持减除运算)。(3)思考:要将程序改成SLR四则运算语法分析器,应如何在该程序的基础上修改、增加代码。-Familiar with the process, analysis, pay attention to in the construction of Table 2 for "with the operator pr
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-28
    • 文件大小:8.66kb
    • 提供者:发电
  1. SLR

    0下载:
  2. SLR parser table SLR parser table SLR parser table-SLR parser table SLR parser table SLR parser table SLR parser table
  3. 所属分类:Compiler program

    • 发布日期:2017-05-26
    • 文件大小:8.21mb
    • 提供者:ASQ
搜珍网 www.dssz.com