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

搜索资源列表

  1. 编译原理课程设计报告LL1文法

    0下载:
  2. 课程设计的目的 通过课程设计进一步理解高级语言在计算机中的执行过程,加深对编译原理中重点算法和编译技术的理解,提高自己的编程能力,培养好的程序设计风格。同时通过某种可视化编程语言的应用,具备初步的Windows环境下的编程思想。解和掌握LL(1)语法分析方法的基本原理;根据给出的LL(1)文法,掌握LL(1)分析表的构造及分析过程的实现。 -curriculum design through curriculum design aimed to further understand se
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:126996
    • 提供者:爽爽
  1. LL(1)分析的实现

    0下载:
  2. 编译中的LL(1)分析方法的实现。对于输入的文法,判断其有效性,用LL(1)方法进行语法分析,并可判别输入的符号串是否为该文法的句型。 -compiler of LL (1) Method of analysis. The importation of the grammar, to judge its effectiveness, with LL (1) methods for syntax analysis, discriminant can input strings of symbols
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:10312
    • 提供者:原子
  1. LL(1)文法——vc

    0下载:
  2. LL1文法的vc实现,编译原理的实验用得着的,对学习编译很有帮助!-LL1 grammar vc realization of the principle of compiling the experiment worthwhile to study compiled helpful!
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:2010
    • 提供者:陈为
  1. Judge_LL(1)

    2下载:
  2. 本设计使用C语言实现了对简单方法描述的LL(1)文法的判定。该设计程序实现了:⑴分别求出每一产生式的右部的FIRST 集、每一个非终结符的FOLLOW集和每一产生式的SELECT集;⑵判定是否是LL(1)文法;⑶画出预测分析表;⑷对给定的符号串判定是否是文法中的句子,分析过程在屏幕上打印出来。 欢迎大家给程序提出富贵意见!-the design of the C language to describe a simple method of LL (1) grammar convicted.
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:147436
    • 提供者:张玉峰
  1. LL(1)语法分析器

    3下载:
  2. LL1语法分析器实验源代码加详细报告
  3. 所属分类:软件工程

  1. 11280_ll1forwin(1)

    0下载:
  2. LL(1)文法的实现代码,用C++写的,大家可以试试,感觉还是很不错的哟-LL (1) the realization of grammar code, using C++ Written, we can try, I feel very good yo
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:35207
    • 提供者:阿建
  1. LL(1)

    0下载:
  2. 采用编译原理的LL(1)文法判断一个算术表达式是否正确如 113+23*3.4*(32.4-5)/23并且给出详细的栈过程显示-The principle used to compile the LL (1) grammar to determine whether or not a correct arithmetic expression such as 113+23* 3.4* (32.4-5)/23 and gives a detailed process shows that the
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:1266
    • 提供者:zz
  1. LL(1)

    1下载:
  2. LL(1)语法分析1、实现LL(1)分析中控制程序(表驱动程序); 2、完成以下描述算术表达式的LL(1)文法的LL(1)分析程序。 G[E]: E→TE′ E′→ATE′|ε T→FT′ T′→MFT′|ε F→ (E)|i A→+|- M→*|/-LL (1) syntax analysis 1, the realization of LL (1) Analysis of control procedures (table-driven procedure
  3. 所属分类:Data structs

    • 发布日期:2017-03-25
    • 文件大小:639946
    • 提供者:张帅
  1. LL(1)

    0下载:
  2. 用c语言来实现,判断一个文法是否为LL(1)文法,并求该文法的First 和Follow集合,比较有用。-C language used to achieve, to determine whether a grammar for LL (1) grammar, and grammar for the collection of First and Follow, more useful.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:4332
    • 提供者:张强
  1. LL(1)grammarsyntax

    0下载:
  2. LL(1)文法自动生成语法分析程序的设计-LL (1) grammar syntax analysis program automatically generates the design
  3. 所属分类:Compiler program

    • 发布日期:2017-04-06
    • 文件大小:18065
    • 提供者:chenpeng
  1. ll(1)fenxi

    0下载:
  2. 本程序是采用的LL(1)方法进行的语法分析,而LL(1)的分析方法是属于自上而下的方法。 自上而下分析的基本思想是:对任意输入串,试图用一切可能的方法,从文法开始符号(根结点)出发,自上而下为输入串建立一棵语法树。从推导的角度看,它是从文法的开始符号出发,反复使用各种产生式,寻找与输入串匹配的推导。 在输入之前必须要进行该文法是不是LL(1)文法的判断,然后再构造相应的LL(1)分析表来用预测分析方法进行语法分析,依据下面的文法及分析表来设计程序实现预测分析的分析过程。
  3. 所属分类:Compiler program

    • 发布日期:2017-03-26
    • 文件大小:1558
    • 提供者:WM
  1. LL(1)

    0下载:
  2. LL(1)文法让你去轻松了解LL(1)文法的好处和见解-LL (1) allow you to easily understand the grammar LL (1) grammar, the benefits and insights! ! ! ! ! ! ! ! !
  3. 所属分类:software engineering

    • 发布日期:2017-04-02
    • 文件大小:1464
    • 提供者:王杰
  1. ll(1)

    0下载:
  2. ll(1)文法分析程序,实现first集,follow即等的运算-ll (1) grammar analysis programs to achieve first set, follow the operation, etc.
  3. 所属分类:Compiler program

    • 发布日期:2017-03-27
    • 文件大小:11308
    • 提供者:张三
  1. 1

    0下载:
  2. 语法分析是编译程序的核心部分。语法分析的作用是识别由词法分析给出的单词符号序列是否是给定的文法的正确句子。目前语法分析常用的方法右自顶向下分析和自底向上分析两大类。 确定的自顶向下方法,是从文法的开始符号,考虑如何根据当前的输入符号(单词)唯一的确定选用哪个产生式替换相应非终结符往下推导。 LL(1)文法是一种确定的自顶向下的分析方法。 LL(1)的含义是:第一个L表明自顶向下分析从左向右扫描输入串,第二个L表明分析过程中将用最左推导,1表明只需向右看一个符号便可以决定如何推导即选
  3. 所属分类:Compiler program

    • 发布日期:2017-05-15
    • 文件大小:4062606
    • 提供者:孔小亮
  1. ll(1)

    0下载:
  2. 编译程序的一个求LL(1)文法的FIRST集合工具-Compiler of an order to LL (1) grammar, the FIRST set of tools for
  3. 所属分类:assembly language

    • 发布日期:2017-03-30
    • 文件大小:13546
    • 提供者:纪欣吉
  1. ll(1)

    0下载:
  2. 语法分析器LL(1)文法(C语言版) 语法分析器LL(1)文法(C语言版)(-Parser LL (1) grammar (C language version) parser LL (1) grammar (C language version) (
  3. 所属分类:Compiler program

    • 发布日期:2017-04-05
    • 文件大小:1839
    • 提供者:dixon
  1. LL-(1)-parser

    0下载:
  2. LL(1)语法分析器设计 1.如下为给定的LL(1)文法。 G[<P>]: 1) <P>->program <D> : <T> begin <S> end {program} 2) D->i D’ {i} 3) D’->, i D’ {,} 4) D’->ε {:} 5) S->s S’ {s} 6) S’-> s S’ { } 7) S’->ε {end
  3. 所属分类:Compiler program

    • 发布日期:2017-03-24
    • 文件大小:190103
    • 提供者:浮云
  1. LL(1)

    0下载:
  2. LL(1) 文法 判空 求产生式 first follow select 集-LL (1) grammar sentence empty seek to produce first follow the select set
  3. 所属分类:Compiler program

    • 发布日期:2017-04-14
    • 文件大小:2943
    • 提供者:范冬雨
  1. LL(1)

    0下载:
  2. LL(1)文法分析程序,基于一定的LL(1)文法,判断输入的程序片段是否符合给定的LL(1)文法。-LL (1) grammar analysis program, based on some of the LL (1) grammar, the judge entered the program fragment whether a given LL (1) grammar.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-19
    • 文件大小:1636
    • 提供者:青玉案
  1. LL(1)Grammer-Analysis

    0下载:
  2. C#实现的LL(1)文法分析器,界面是用WPF实现的。-C# implementation of LL (1) grammar analyzer, the interface is implemented using WPF.
  3. 所属分类:CSharp

    • 发布日期:2017-03-31
    • 文件大小:97864
    • 提供者:James Mike
« 1 23 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com