CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - lr 语法分析

搜索资源列表

  1. wenfafenxi

    0下载:
  2. 使用如下文法: E ? E+T | T T ? T*F | F F ? (E) | id 2. 对于任意给定的输入串(词法记号流)进行语法分析,采用LR分析器来完成。手工构造LR分析表,利用移进-归约分析算法-Use the following grammar: E ? E+ T | TT ? T* F | FF ? (E) | id 2. For any given input string (lexical token stream) parsing, the us
  3. 所属分类:Compiler program

    • 发布日期:2017-03-24
    • 文件大小:703512
    • 提供者:dmf
  1. yacc

    0下载:
  2. 利用LR(1)分析表和状态图进行语法分析,里面有详细的报告说明-LR (1) analysis of the table and the state diagram syntax analysis, which has a detailed descr iption of the report
  3. 所属分类:Compiler program

    • 发布日期:2017-11-18
    • 文件大小:430108
    • 提供者:天才
  1. LRfenxiqi

    0下载:
  2. 对于任意给定的输入串(词法记号流)进行语法分析,要求采用LR分析器来完成。手工构造LR分析表,利用移进-归约分析算法(P69 图3.12)输出(P70 表3.8)对应的动作部分。如: 输入:id*+id/(id+id)# 输出:移进 按 F->id归约 移进 error -For any given input string (the lexical token stream) parsing, required by LR parser to complet
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:599472
    • 提供者:hanson
  1. semantic_analyse_program

    0下载:
  2. 用C++编写的语义分析程序,基于LR文法,能实现词法分析,语法分析,返回相应结果,并返回归约过程和四元式。并附有实验报告和源工程。-Written in C++ semantic analysis program, based on the LR grammar, to achieve lexical analysis, parsing, returns the appropriate result, and return to the process of reduction and quat
  3. 所属分类:Compiler program

    • 发布日期:2017-05-20
    • 文件大小:5905079
    • 提供者:淼淼
  1. Grammer_Ana

    0下载:
  2. 一个简单的语法分析程序,采用LR(1)分析法,并使用递归向下和自上而下的方法。-A simple parser, using the LR (1) analysis, and use the down and top-down recursive approach.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-07
    • 文件大小:3058
    • 提供者:John
  1. yacc

    0下载:
  2. 简单的语法分析。运用了词法分析的结果进行语法分析,基于LR(1)分析表-Syntax analysis
  3. 所属分类:Compiler program

    • 发布日期:2017-04-10
    • 文件大小:1192172
    • 提供者:wutu
  1. ll-slr

    0下载:
  2. lr ,slr 语法分析,编译原理中的小程序,可以来体验一下-lr ,slr
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:283956
    • 提供者:hyq
  1. for

    0下载:
  2. 编译原理for语句的翻译,LR文法,输出四元式,有语法分析,词法分析功能-Compiler theory for the translation of the statement, LR grammar, out four yuan style, syntax analysis, lexical analysis
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:2552
    • 提供者:彭萍
  1. test1

    0下载:
  2. 词法分析及语法分析。文法为自定义,语法分析为LR(1)分析法。仅供参考。-Lexical analysis and parsing. The grammar for the custom parsing LR (1) analysis. For reference only.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-07
    • 文件大小:364641
    • 提供者:房梦阳
  1. main

    1下载:
  2. 使用如下文法: E E+T | T T T*F | F F (E) | id 实现:对于任意给定的输入串(词法记号流)进行语法分析,要求采用LR分析器来完成。手工构造LR分析表,利用移进-归约分析算法输出对应的动作部分。-Use the following syntax:E T E+T |* F F T T |F ( E ID ) |Implementation: for any given input string ( lexical mark flow )
  3. 所属分类:编译器/词法分析

    • 发布日期:2012-12-20
    • 文件大小:1182
    • 提供者:fansofdetective
  1. LRyufafenxi

    0下载:
  2. 用JAVA实现的LR(0)语法分析,功能完善,绝对原创-JAVA realization of LR (0) parsing, perfect function, the absolute originality
  3. 所属分类:Dialog_Window

    • 发布日期:2017-12-08
    • 文件大小:417209
    • 提供者:一夜长大
  1. LR1

    0下载:
  2. 构造LR(1)分析程序,利用它进行语法分析,判断给出的符号串是否为该文法识别的句子,了解LR(K)分析方法是严格的从左向右扫描,和自底向上的语法分析方法。-Construct LR (1) analytical procedures, and use it to parse sentences of whether the judgment given string of symbols for grammar recognition LR (K) analysis method is stri
  3. 所属分类:Compiler program

    • 发布日期:2017-11-20
    • 文件大小:35719
    • 提供者:孙辰
  1. bianyishiyan

    0下载:
  2. 一个简单的LR语法分析器分析程序,希望需要的人简单看下,提供借鉴。-LR parser parses a simple program, I hope those who need a simple look, learn.
  3. 所属分类:Compiler program

    • 发布日期:2017-11-08
    • 文件大小:3685
    • 提供者:yu
  1. code

    0下载:
  2. 北邮大三上编译原理,语法分析程序源代码,有:LL(1)语法分析算法,LR(1)语法分析算法。-BUPT junior on compiler theory, syntax analysis program source code, there are: LL (1) parsing algorithm, LR (1) parsing algorithms.
  3. 所属分类:Compiler program

    • 发布日期:2017-11-16
    • 文件大小:1757620
    • 提供者:向月车
  1. yufa-

    0下载:
  2. 用C语言完成的语法分析器,功能完全 .   根据某一文法编制调试LR(1)分析程序,以便对任意输入的符号串进行分析。本次实验的目的主要是加深对LR(1)分析法的理解。-With C language parser, fully functional
  3. 所属分类:Compiler program

    • 发布日期:2017-04-08
    • 文件大小:173158
    • 提供者:yyz
  1. Desktop

    0下载:
  2. 编译原理语法分析 LL1 LR 程序自动分析表生成-Compilation Principle syntax analysis LL1 LR
  3. 所属分类:Console

    • 发布日期:2017-06-03
    • 文件大小:15053934
    • 提供者:欧荣彬
  1. LR0-(2)

    0下载:
  2. LR分析 自上而下的语法分析 编译原理实验-LR analysis
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-29
    • 文件大小:12447
    • 提供者:周莎莎
  1. LR0Algorithm_V1

    0下载:
  2. LR算法图形化演示系统,语法树,语法分析表-LR algorithm graphical presentation systems, syntax tree parsing table
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-25
    • 文件大小:67824
    • 提供者:毛勇乐
  1. LL1

    0下载:
  2. 语法分析器 LR(1)分析法 功能简单 但是使用-you will like it.
  3. 所属分类:CSharp

    • 发布日期:2017-05-03
    • 文件大小:656043
    • 提供者:buzhidao
  1. Recursive-descent-analysis

    0下载:
  2. 构造LR(1)分析程序,利用它进行语法分析,判断给出的符号串是否为该文法识别的句子,了解LR(K)分析方法是严格的从左向右扫描,和自底向上的语法分析方法-Construct LR (1) parser, and use it for parsing strings determine whether a given recognition for grammar sentences, understanding LR (K) analysis method is strict scan lef
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:15885
    • 提供者:邓三
« 1 2 3 4 5 67 »
搜珍网 www.dssz.com