CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - 语法分析 ll(1)

搜索资源列表

  1. bianyic++

    0下载:
  2. 录入合法的LL(1)文法,将输出LL(1)预测分析表,并可以对输入的句子进行语法分析输出相应语法树。-Input legitimate LL (1) grammar, will output LL (1) Table Forecast and Analysis, and can import sentence for syntax analysis syntax tree corresponding output.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:165546
    • 提供者:丁关根
  1. ll1ll1

    0下载:
  2. 编译原理LL(1)文法分析器 录入合法的LL(1)文法,将输出LL(1)预测分析表,并可以对输入的句子进行语法分析输出相应语法树。 程序中部分算法还很不简洁,有待改进,欢迎朋友与我多多交流。 lifanxi@263.net 2002年5月-compiler theory LL (1) grammar analyzer input legitimate LL (1) grammar, will output LL (1) Table Forecast and An
  3. 所属分类:界面编程

    • 发布日期:2008-10-13
    • 文件大小:30088
    • 提供者:111
  1. 2005060717340116648

    0下载:
  2. LL(1)语法分析器,对任意输入LL(1)文法的分析表及字符串, 否为该文法的句子,并能给出分析过程。-LL (1) parser, the indiscriminate importation of LL (1) grammar analysis table and string, whether or not the sentence grammar, and can provide analysis process.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:7160
    • 提供者:飒飒
  1. by

    0下载:
  2. 条件语句的语法分析及语义分析程序设计 利用 LL(1)法完成对语句 IF 〈布尔表达式〉 THEN 〈赋值语句〉 ELSE 〈赋值语句〉;的语法分析及语义分析。中间代码选用四元式表示。
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:108611
    • 提供者:苹果
  1. 程序的语法分析

    0下载:
  2. 对一个LL(1)文法的句型进行分析看其是不是属于该文法的产生句型-a pair of LL (1) grammar Sentence for its analysis is not belong to the grammar have Sentence
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:12913
    • 提供者:杨鼎新
  1. 分析程序

    0下载:
  2. 语法分析程序,包括对任意输入LL(1)文法的分析表及字符串,本程序能自动判断所给字符串是\" 否为该文法的句子,并能给出分析过程。-syntax analysis procedures, including the indiscriminate importation of LL (1) grammar analysis table and string, the procedure can automatically determine to a string of "whether
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:26928
    • 提供者:chu
  1. 050629

    0下载:
  2. 编译方法课程设计之LL(1)语法分析,使用说明详见说明文件。-compiled Course Design LL (1) syntax analysis, use detailed documentation.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:35333
    • 提供者:好好
  1. LL(1)文法分析

    0下载:
  2. 求一个文法的first,follow,select集判断该文法是不是LL(1)文法,生成该文法的预测分析表,输入字符串的分析表,以及相应的语法树。
  3. 所属分类:Windows编程

    • 发布日期:2009-06-29
    • 文件大小:49471
    • 提供者:gudanping
  1. LL(1)法对布尔表达式的语法分析

    0下载:
  2. LL(1)法对布尔表达式的语法分析
  3. 所属分类:C#编程

    • 发布日期:2008-12-22
    • 文件大小:762
    • 提供者:jason88129
  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. 20064350132

    1下载:
  2. 通过设计,编制,调试一个语法及语义分析程序,加深对语法及语义分析原理的理解。 IF 〈布尔表达式〉 THEN 〈赋值语句〉 ELSE 〈赋值语句〉 其中 (1)、可以选择递归下降法、LL(1)、算符优先分析法、LR法完成以上任务,中间代码选用四元式。 (2)、 写出符合分析方法要求的文法,给出分析方法的思想,完成分析程序设计。 (3)、 编制好分析程序后,设计若干用例,上机测试并通过所设计的分析程序。 目 录 一.系统需求分析 二.概念模型设计 三.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:488522
    • 提供者:aden
  1. 15883

    0下载:
  2. (1)、本代码实现语法分析的LL(1)分析法。 (2)、输入一个文法的所有产生式,由程序自动生成它的LL(1)预测分析表。 (3)、对于给定的输入串,能正确识别该串是否为给定文法的句型。 -(1), the parsing code of LL (1) analysis. (2), all of grammar enter a production, it is automatically generated by the procedures of the LL (1) Forec
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-25
    • 文件大小:22422
    • 提供者:whom
  1. 2006435013

    0下载:
  2. 基于LL(1)法的条件语句语法语义分析程序. 编译原理的课程设计-this is ll(1)
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-17
    • 文件大小:441080
    • 提供者:余欢
  1. cifa

    0下载:
  2. 包括一个LR(1)的语法分析程序和一个LL(1)的语法分析程序的例子-Includes a LR (1) syntax analysis procedure and an LL (1) Examples of the syntax analysis program
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:4107
    • 提供者:yy
  1. yufafenxi

    0下载:
  2. 采用LL(1)方法,用C语言在C++开发环境下编写的语法分析程序,简单易懂,已经过调试-Using LL (1) method, using C language development environment C++ parser written in a simple easy to understand, has been commissioning
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:2409
    • 提供者:王志刚
  1. ll(1)

    0下载:
  2. 编译原理中的LL(1)分析程序。具有代表性的语法分析方法。-LL(1)
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-04
    • 文件大小:4632
    • 提供者:伍颖瑜
  1. main

    0下载:
  2. 编译原理实验之ll(1)语法分析,主要完成ll(1)分析表的构造和输入字符串的正确性检验-Compiler theory experiment ll (1) syntax analysis was completed for ll (1) of the table structure and test the correctness of input string
  3. 所属分类:Other systems

    • 发布日期:2017-03-31
    • 文件大小:2596
    • 提供者:toby
  1. yufa

    0下载:
  2. 简单的实现编译原理LL(1)语法分析,给定文法和分析表 -a program a baout LL(1)analsy
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:343424
    • 提供者:张建民
  1. LL(1)

    0下载:
  2. 用C++实现编译器语法分析功能,算法是LL(1),非常精炼-parsing function with C++
  3. 所属分类:Windows Develop

    • 发布日期:2017-12-05
    • 文件大小:3579
    • 提供者:丰文安
  1. 语法分析器

    0下载:
  2. 该程序使用的自上而下的LL(1)分析法,,该文法不允许左递归,首先要消除左递归。(The program uses the top-down LL (1) analysis method, which does not allow left recursion, and the left recursion is first eliminated.)
  3. 所属分类:其他

    • 发布日期:2018-04-29
    • 文件大小:2194432
    • 提供者:寻常j
« 12 »
搜珍网 www.dssz.com