搜索资源列表

  1. ll1

    0下载:
  2. 输入已经消除左递归的以及提取公共左因子的LL(1)文法,再输入相应的表达式,若分析成功,则在递归输出过程中输出"acc",若不成功,则有相应的报错以及位置指名。注意,要把同一个非终结符的产生式分成单个输入。他会自动计算first,follow,预测分析表的构造,但并不输出。-importation has been eliminated and left recursive public from the left-LL (1) gra
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:33792
    • 提供者:赵旋
  1. yufafenxi

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

    • 发布日期:2024-05-21
    • 文件大小:3072
    • 提供者:qj
  1. LL1

    0下载:
  2. 消除左递归的文法来使文法满足进行确定自顶向下分析的条件 一个LL(1)分析法的语法分析器-Elimination of left-recursive grammar to make grammar meet to determine the top-down analysis of the conditions for an LL (1) Analysis Parser
  3. 所属分类:系统编程

    • 发布日期:2024-05-21
    • 文件大小:204800
    • 提供者:余祖澔
  1. xiaochuzuodigui

    0下载:
  2. 实现编译原理消除左递归的c++程序源代码 实现编译原理消除左递归的c++程序源代码-Compiling principle to achieve the elimination of left recursive c++ Compile source code to achieve the principle of the elimination of left recursive c++ Source code
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:1024
    • 提供者:
  1. yufa

    0下载:
  2. 1. 分析文法是否符合要求,适当消除左递归,提取左因子。 2. 分析新构造的产生式集合,构造预测分析表。实现LL(1)分析 3. 编写程序根据分析表输出结果---产生式的序列 -1
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:2048
    • 提供者:cyb
  1. LL(1)

    0下载:
  2. LL(1)分析 写的语法分析程序,但是不能实现消除左递归,提取公因子-LL (1) analysis of written grammar analysis program, but can not eliminate the left recursion, extracting common factor
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:194560
    • 提供者:
  1. bianyi

    0下载:
  2. 编译原理中的实验,消除左递归的实现。c++开发环境-Compilation Principle of the experiment, the realization of the elimination of left recursion. c++ development environment
  3. 所属分类:Windows编程

    • 发布日期:2024-05-21
    • 文件大小:1024
    • 提供者:董必锋
  1. xiaochuzuodigui

    0下载:
  2. 用于消除左递归的一个用C++语言实现的小程序。里面包含有详细的报告和源代码。-Used to eliminate the left recursion in a C++ language implementation with a small program. Which contains detailed reports and source code.
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:726016
    • 提供者:曾冬梅
  1. compiling

    0下载:
  2. 编译原理实验:词法分析、语法分析、语义分析,包含代码和报告、构建分析表、消除左递归、语法分析、流程图-Compiler Principle Experiment: lexical analysis, syntax analysis, semantic analysis, including code and reports, construction of the table, to eliminate left-recursion,
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:3873792
    • 提供者:xiedanfeng
  1. happy

    0下载:
  2. 编译原理词法分析器的功能是利用函数之间的递归调用模拟语法树自上而下的构造过程。 改造文法:消除二义性、消除左递归、提取左因子,判断是否为LL(1)文法 -Compiler theory lexical analyzer function is to use recursive function calls between the simulation process of constructing the syntax tree
  3. 所属分类:软件工程

    • 发布日期:2024-05-21
    • 文件大小:11264
    • 提供者:happyjack
  1. complie

    0下载:
  2. 输入一行文法,程序自动解析,采用LL(1)文法,消除左递归,建立预测分析表。-
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:4096
    • 提供者:lidong
  1. Syntax_Analysis-LL(1)-LCC

    0下载:
  2. 编译原理之语法分析LL(1) (1)消除左递归 (2)求First集 (3)求Follow集 (4)预测分析表 (5)预测分析过程-Compiler theory of parsing LL (1) (1) elimination of left recursion (2) Find First Set (3) Find Follow set (4) prediction of sheet (5) predictio
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:66560
    • 提供者:
  1. LL1parserVS2010

    0下载:
  2. LL1语法分析器,FIRST集合的构造,FOLLOW集合的构造,消除左递归,预测分析表 C++语言开发,工具VS2010-LL1 parser, FIRST set of the structure, FOLLOW set of the structure, elimination of left recursion, predictive analysis table C++ language development tools fo
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:273408
    • 提供者:jianren2hao
  1. GrammerParsers

    0下载:
  2. 利用C++语言编制一个LL(1)语法分析器,利用LL(1)控制程序根据显示栈栈顶内容、向前看符号以及LL(1)分析表,对输入符号串自上而下的分析过程。可通过消除左递归、提取左因子把非LL(1)文法改造成LL(1)文法。-Compiled using a C++ language LL (1) parser using LL (1) control program according to display the contents of
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:227328
    • 提供者:杨玥
  1. xiaochuzuodigui

    0下载:
  2. 这是一份关于编译原理的消除左递归的代码,很不错,对于刚学习的学生来说有借鉴价值!-This is a report on the elimination of left recursive code compiler theory, a very good reference value for students who are just learning!
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:1024
    • 提供者:王明远
  1. grammaPanalysis_LL(1)

    0下载:
  2. 使用MFC实现编译原理LL1语法分析器(含消除左递归)-Using MFC compiler theory LL1 parser (including the elimination of left recursion)
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:2372608
    • 提供者:美美
  1. TLL1h

    0下载:
  2. 消除左递归的文法来使文法满足进行确定自顶向下分析的条件 一个LL(1)分析法的语法分析器,已通过测试。 -Elimination of left recursive grammar to the grammar to meet the parser to determine the top-down analysis of the conditions of an LL (1) analysis method has been te
  3. 所属分类:Windows编程

    • 发布日期:2024-05-21
    • 文件大小:16384
    • 提供者:分界线
  1. Cbianyiio

    0下载:
  2. 编译原理中的实验,消除左递归的的实现。c++开发环境可直接使用。 -Compiler Principle of experiments to eliminate the left-recursive implementation. c++ development environment can be used directly.
  3. 所属分类:Windows编程

    • 发布日期:2024-05-21
    • 文件大小:1024
    • 提供者:tyjx
  1. GLLL1tare

    0下载:
  2. LL1通用语法分析器,有消除左递归,FIRST集合、FFOLLOW集合、分析表生成等功能,已通过测试。 -LL1 general parser, to eliminate left recursion, FIRST collection FFOLLOW collection, analysis, table generation, has been tested.
  3. 所属分类:Windows编程

    • 发布日期:2024-05-21
    • 文件大小:506880
    • 提供者:tyjx
  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 predict
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-21
    • 文件大小:2284544
    • 提供者:czl
« 1 23 »

源码中国 www.ymcn.org