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

搜索资源列表

  1. yufafenxi

    0下载:
  2. 编译器语法分析程序,输入一个表达式,进行语法分析-Compiler, parser, enter an expression for parsing
  3. 所属分类:Compiler program

    • 发布日期:2017-04-05
    • 文件大小:1266
    • 提供者:余雨
  1. diguizichengxu

    0下载:
  2. 设计、编制、调试一个典型的语法分析程序,实现对如下文法的递归子程序法分析,进一 步掌握常用的语法分析方法。-Design, preparation, testing a typical parser to realize the following grammar for a recursive subroutine Analysis, to further understand the syntax of commonly used analytical methods.
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:1544
    • 提供者:张皓
  1. yufa

    0下载:
  2. 语法分析器,对已给pascal语言文法,构造LL(1)分析表,编制语法分析程序,要求将错误信息输出到语法错误文件中,并输出分析句子的过程-Parser that have been to the pascal language grammar, structure LL (1) analysis table, the preparation of parsing procedure that requires the output to the error message syntax erro
  3. 所属分类:Compiler program

    • 发布日期:2017-04-10
    • 文件大小:1951353
    • 提供者:陈美娟
  1. bianyi

    0下载:
  2. 对PL/o对其词法分析程序、语法分析程序和语义处理程序进行部分修改扩充 扩充赋值运算:+= 和 -= 扩充语句 REPEAT <语句序列> DOWHILE <条件> 其中,<条件>是循环条件,即条件成立时,重复执行循环体的< 语句序列> (3)增加运算:++ 和 --。 (4)增加类型: 实数类型。 (5)扩充函数: 有返回值和返回语句。 -On the PL/o of its lexical anal
  3. 所属分类:Compiler program

    • 发布日期:2017-05-10
    • 文件大小:2365072
    • 提供者:李日明
  1. Parse2

    0下载:
  2. 设计、编制、调试一个典型的语法分析程序,实现对词法分析程序所提供的单词序列进行语法检查和结构分析,进一步掌握常用的语法分析中预测分析方法。-Design, preparation, debugging a typical parser, lexical analysis program to realize the word sequence provided by the grammar checking and structural analysis, to further understa
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:51009
    • 提供者:chenxi
  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. LexicalAnalysis

    0下载:
  2. 词法分析源码:从左到右扫描每行该语言源程序的符号,拼成单词,换成统一的内部表示(token),送给语法分析程序。-Lexical analysis Source: from left to right scan every line in the source language of symbols, spell the word, and replaced with a unified internal representation (token), sent to the parser.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:1394
    • 提供者:zhangxueli
  1. YFFXQ

    0下载:
  2. 使用递归子程序法设计一个语法分析程序,自顶向下分析方法. 1、使用递归下降分析算法分析表达式文法: exp ::= exp addop term | term addop ::= + | - term ::= term mulop factor | factor mulop ::= * | / factor ::= (exp) | number 其中number可以是多位的十进制数字串(整数即可),因此这里还需要一个小的词法分析器来得到number的值。 2、该
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:194818
    • 提供者:龙一
  1. YaFaFenXi

    0下载:
  2. 这是一个有关编译原理的语法分析程序,欢迎大家下载!-This is a small program.Welcome to download!
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-05
    • 文件大小:5686
    • 提供者:豆豆
  1. 123

    0下载:
  2. 编绎原理实用教程实验 词法分析程序 语法分析程序 可以运行的词法分析程序 语法分析程序 -Interpretation of principle experiment series of practical tutorials parser lexical analysis program that can run the parser lexical analysis program
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-16
    • 文件大小:9356
    • 提供者:寒心随
  1. 1234567

    0下载:
  2. 递归下降法语法分析程序,用C++语言实现的递归下降法语法分析程序。-Recursive descent parser, C++ language using a recursive descent parser
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:21480
    • 提供者:张力
  1. 20029440913

    0下载:
  2. (1) 根据LL(1)分析法编写一个语法分析程序,可根据自己实际情况,选择以下一项作为分析算法的输入: a. 直接输入根据已知文法构造的分析表M b.输入文法的FIRST(α)和FOLLOW(U)集合,由程序自动生成文法的分析表M; c.输入已知文法,由程序自动构造文法的分析表M。 (2) 程序具有通用性 所开发的程序可适用于不同的文法和任意输入串,且能判断该文法是否为LL(1)文法。 (3) 有运行实例 对于输入的文法和符号串,所编制的语法分析程序应能正确判断此
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:289814
    • 提供者:zmf
  1. complier

    0下载:
  2. 我们设计的编译程序涉及到编译五个阶段中的三个,即词法分析器、语法分析器和中间代码生成器。编译程序的输出结果包括词法分析后的二元式序列、变量名表、状态栈分析过程显示及四元式序列程序,整个编译程序分为三部分: (1) 词法分析部分 (2) 语法分析处理及四元式生成部分 (3) 输出显示部分 -We designed the compiler to compile the five stages involved in the three, namely, lexical analy
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:78257
    • 提供者:刘彦生
  1. VC_compiler_theory_to_achieve_simple_grammar_analy

    0下载:
  2. VC实现编译原理简易语法分析程序 代码VC compiler theory to achieve simple grammar analysis code-VC compiler theory to achieve simple grammar analysis code
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:79980
    • 提供者:bbn
  1. yufafengxi

    0下载:
  2. 类pascal语言的语法分析程序,输入源代码 输出语法树-Class pascal language parser, the input source code output syntax tree
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:6570
    • 提供者:wujun
  1. Lexer

    0下载:
  2. 该任务需要你为数学表达式构建一个单纯的语法分析程序lexer,它将一段输入的字符串转变为token(值),token(值)里每个字符都属于数学表达式的组成部分。我们想将token(值)定义为如下几种(1)计算符号,+,-.(2)字母和下划线 (3)数字,这三者先不需要仔细区分。-In this assignment, you will build a simple lexer for arithmetic expressions. A lexer breaks an put str g to
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:3313
    • 提供者:faasewq
  1. LL1_yufafenxi

    0下载:
  2. LL(1)语法分析程序 LL(1)语法分析程序-LL (1) parser
  3. 所属分类:Compiler program

    • 发布日期:2017-05-13
    • 文件大小:3553332
    • 提供者:yaodongyang
  1. 31767678analyse_0

    0下载:
  2. 编译原理中实现自顶向下语法分析,若文法中不含左递归,并且每个非终结符的所有后选式的首符集都两两不相交,那么就有可能构造一个不带回溯的自顶向下的语法分析程序-Compiler theory to achieve top-down parsing When every not terminal goes without interacting with each other,It can make a process of form up to down
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:2134
    • 提供者:泉泉
  1. expression

    0下载:
  2. 编译原理中的语法分析程序(包含词法分析部分)-Compiler Principle parser (including lexical analysis)
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:1813
    • 提供者:Sam
  1. CMMsyntaxanalysis

    0下载:
  2. CMM语言语法分析程序,输入CMM程序,输出语法树。-CMM language parser, type CMM process, output syntax tree.
  3. 所属分类:Compiler program

    • 发布日期:2017-05-06
    • 文件大小:1402167
    • 提供者:lili
« 1 2 ... 7 8 9 10 11 1213 14 15 16 17 ... 39 »
搜珍网 www.dssz.com