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

搜索资源列表

  1. 消除左递归1

    0下载:
  2. 对给定的文法消除左递归。- To the grammar which assigns eliminates the left recursion.
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:1469
    • 提供者:刘远兴
  1. 消除左递归得到后缀式

    0下载:
  2. 解法:对原文法消除左递归,根据消除左递归后的等价文法建立语法树,而后对此语法树 进行后根遍历,即可得到后缀式.- Solution: Eliminates the left recursion to the original grammar, after equal in value grammar establishment grammar tree which eliminates the left recursion, after but the grammar tree carrie
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:2219
    • 提供者:刘远兴
  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, parsing, flow chart
  3. 所属分类:Compiler program

    • 发布日期:2017-05-15
    • 文件大小:3873584
    • 提供者:xiedanfeng
  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. 所属分类:Compiler program

    • 发布日期:2017-04-28
    • 文件大小:194183
    • 提供者:
  1. indirect_recursion

    0下载:
  2. 编译原理消除间接左递归。将结果存于文件中-Compiler to eliminate the principle of indirect left recursion. The results stored in the document
  3. 所属分类:Compiler program

    • 发布日期:2017-04-17
    • 文件大小:137634
    • 提供者:林臻
  1. bianyi

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

    • 发布日期:2017-04-01
    • 文件大小:1212
    • 提供者:董必锋
  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. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:726414
    • 提供者:曾冬梅
  1. diguixiajiang

    0下载:
  2. 递归下降的基本思想: 为每一个非终结符构造一个子程序,每一个子程序的过程体中按该产生式的候选项分情况展开,遇到终结符直接匹配,而遇到非终结符就调用相应非终结符的子程序。该分析从调用文法开始符号的子程序开始,直到所有非终结符都展开为终结符并得到匹配为止。若分析过程中达到这一步则表明分析成功,否则表明输入中有语法错误。递归下降分析对文法的限制是不能有公共左因子和左递归。由于文法是递归定义的,因此子程序也是递归的,被称为递归下降子程序。 -The basic idea of recursiv
  3. 所属分类:Compiler program

    • 发布日期:2017-03-22
    • 文件大小:1456
    • 提供者:WM
  1. leftrecursion

    0下载:
  2. code for left recursion in compilers.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-13
    • 文件大小:1850
    • 提供者:anitha
  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 from the top down. Transforma
  3. 所属分类:software engineering

    • 发布日期:2017-04-08
    • 文件大小:10837
    • 提供者:happyjack
  1. leftrec

    0下载:
  2. program on left recursion
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-28
    • 文件大小:871
    • 提供者:Sindhu
  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) prediction analysis
  3. 所属分类:Compiler program

    • 发布日期:2017-03-22
    • 文件大小:66567
    • 提供者:
  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 for VS2010
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:273028
    • 提供者: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 the stack the stack, forward-l
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:226849
    • 提供者:杨玥
  1. syntax

    0下载:
  2. LL(1)文法的实现。具体设计要求如下: 1. 可以使用任何语言来完成,例如:Java、C、C++。 2. 文法采用常用的方式进行描述,例如:S→aA。 3. 以文件方式读取文法。 4. 分别求出每一个非终结符FIRST 集FOLLOW集和SELECT集。 5. 画出预测分析表。 6. 判定读入的文法是否是LL(1)文法。 7. 给定的任意符号串判定是否是文法中的句子,将分析过程用计算机打印出来。 8. 查出文法中是否含有左递归或左公因子。若有则消除左公因子和左递
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:5713
    • 提供者:冯景航
  1. Remove-left-recursion

    0下载:
  2. Compiler tech: Program To Remove Left Recursion From The Given Grammar
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:952
    • 提供者:jack
  1. Left-Recursion.cpp

    0下载:
  2. Left recursion removal in CFG
  3. 所属分类:Compiler program

    • 发布日期:2017-03-26
    • 文件大小:1031
    • 提供者:DJ
  1. grammaPanalysis_LL(1)

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

    • 发布日期:2017-05-10
    • 文件大小:2373031
    • 提供者:美美
  1. left-crusion

    0下载:
  2. 消除左递归,包括自上而下的非递归分析和自上而下的分析-Eliminate left recursion, including non-recursive top-down analysis and top-down analysis
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:651196
    • 提供者:fuxi
  1. Left-Recu

    0下载:
  2. Left Recursion Remove Grammer-Left Recursion Remove Grammer
  3. 所属分类:Compiler program

    • 发布日期:2017-04-12
    • 文件大小:569
    • 提供者:Dhaval
« 12 »
搜珍网 www.dssz.com