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

搜索资源列表

  1. LRTrans1

    0下载:
  2. 该程序为一个手工编码实现的简单SLR语法分析器,其词法分析器调用接口为lex(),语法分析调用接口为SLR1()。-The program is a simple hand-coded implementation SLR parser, the lexical analyzer is called interface lex (), parsing call interface for the SLR1 ().
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:223335
    • 提供者:孔小亮
  1. LRTrans1

    0下载:
  2. 该程序是在实验4程序基础上实现的一个手工编码实现的简单计算器,其词法分析器调用接口为lex(),语法分析器调用接口为SLR1(),语义动作调用接口为run()。-The program is based on the experimental procedure 4, a hand-coding a simple calculator, the lexical analyzer is called interface lex (), parser call interface for the S
  3. 所属分类:Compiler program

    • 发布日期:2017-03-24
    • 文件大小:18442
    • 提供者:孔小亮
  1. wiw

    0下载:
  2. 编译原理课程设计代码 包含词法 语法分析器 和中间代码生成器-Principles of Course Design Compiler Code
  3. 所属分类:CSharp

    • 发布日期:2017-04-24
    • 文件大小:8960
    • 提供者:吴月宏
  1. pascalcompile

    0下载:
  2. 基于pascal语言的词法分析器,语法分析器 vc编写-Pascal language-based lexical analyzer, parser prepared vc
  3. 所属分类:Editor

    • 发布日期:2017-04-07
    • 文件大小:395479
    • 提供者:颜玉林
  1. other036

    0下载:
  2. 一个用VC编写的-词法语法分析器(编译原理)-Prepared with a VC- and lexical parser (compiler principle)
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:237213
    • 提供者:lee
  1. cffxq

    0下载:
  2. 词法分析器,主要任务是把输入的字符串进行扫描和分解,识别出各种类型的单词符号产生于语法分析的词法记号序列。-Lexical analyzer, the main task is to scan the input string and decomposition, to identify various types of word symbols in the syntax analysis of the sequence of lexical tokens
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:1010169
    • 提供者:houbo
  1. LexicalANDParserAnalyzer

    0下载:
  2. 用C、C++语言开发的简易词法分析器、语法分析器-With C, C++ language developed simple lexical analyzer, parser
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:267412
    • 提供者:hmy
  1. syntaxanalyzer

    0下载:
  2. 用vc编写的一个c语言语法分析器,主要功能:词法分析,语法分析,出错处理。-Written with a c vc language parser, the main function: lexical analysis, syntax analysis, error handling.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:285194
    • 提供者:gongxinghao
  1. tinyscan

    0下载:
  2. tiny语法分析器,源文件以及词法分析程序-tiny
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-05
    • 文件大小:3820
    • 提供者:
  1. cifafenxiqi

    0下载:
  2. 词法分析器,c++,实现基础的语法分析功能-compiler
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:248852
    • 提供者:qiu
  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. compiler_construction_source_code

    1下载:
  2. 编译原理课程设计 包括语法分析器,词法分析器,自动词法分析器-compiler_construction_source_code including parser, scanner
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:28476
    • 提供者:michael
  1. 89346508vc61667782466_newaspreytrtyh

    0下载:
  2. 判断单词结构的词法分析器小程序,它能够分析单词符号传递的语法语义-yufayuyifencichengxu
  3. 所属分类:Compiler program

    • 发布日期:2017-04-05
    • 文件大小:246328
    • 提供者:wangshunyao
  1. ForTrans

    0下载:
  2. 编译课程设计的基本任务是设计一个mini-pascal语言的编译器,将mini-pascal 语言的源程序翻译成等价的中间代码。要求输入mini-pascal语言写的源程序(以文件形式存储),首先经过词法分析,输出原程序分析后的二元式文件,供语法制导翻译用。经过语法制导翻译将词法分析器产生的二元式翻译成等价的四元式形式,也就是中间代码的生成。要求能进行正常的关键字如:begin,end, if ,else 等的识别-Compile the basic task of curriculum des
  3. 所属分类:Editor

    • 发布日期:2017-04-09
    • 文件大小:1039010
    • 提供者:整修民
  1. 4

    0下载:
  2. 目的:熟练掌握自下而上的语法分析方法,并能用程序实现。 要求: 1. 使用如下文法: E E+T | T T T*F | F F (E) | id 2. 对于任意给定的输入串(词法记号流)进行语法分析,要求采用LR分析器来完成。手工构造LR分析表,利用移进-归约分析算法(P69 图3.12)输出(P70 表3.8)对应的动作部分。如: 输入:id*+id+(id+id)# 输出:移进 按 F->id归约 移进 error
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:2122
    • 提供者:TOM
  1. upkeshe

    0下载:
  2. 编译原理词法分析器,用C++实现词法分析语法分析语义分析。程序简单易懂便于研究。-GOOD
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:3725
    • 提供者:haitao
  1. LL1

    0下载:
  2. LL分析器 2、 在VC下打开LL1.dsp,阅读工程LL1,LL1为一个加、乘法(适当扩充可为四则)运算表达式的LL1预测语法分析器,规定其文法如下: E->TE’ (1) E’->+TE’ (2) E’->ε (3) T->FT’ (4) T’->*FT’ (5) T’->ε (6) F->(E) (7) F->i (8) 程序设计思路见课本P76,
  3. 所属分类:Compiler program

    • 发布日期:2017-03-24
    • 文件大小:9355
    • 提供者:chivas
  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. compiler

    0下载:
  2. 编译器原理的课设报告,完整的词法语法分析器,相当不错-Compiler design principles of the course report, the full lexical parser, pretty good
  3. 所属分类:Compiler program

    • 发布日期:2017-04-24
    • 文件大小:261311
    • 提供者:fuxiaokun
  1. PLO

    1下载:
  2. 编译程序,词法分析器,语法分析器,生成中间代码,编译器,pl0语言-compile
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:4407
    • 提供者:wenjie
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 16 »
搜珍网 www.dssz.com