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

搜索资源列表

  1. yufa

    0下载:
  2. 编译原理大作业的语法部分 包含词法分析 -The syntax of compiler theory section contains a large job lexical analysis
  3. 所属分类:Compiler program

    • 发布日期:2017-04-09
    • 文件大小:1534687
    • 提供者:李昕
  1. a

    0下载:
  2. 内含TINY及cminus的实验要求 语法语义 词法分析的整个过程 并附有部分代码-TINY and cminus experiment contains grammatical and semantic requirements of the whole process of lexical analysis together with part of the code
  3. 所属分类:Compiler program

    • 发布日期:2017-05-10
    • 文件大小:2511114
    • 提供者:mishuai
  1. word1

    1下载:
  2. 有关词法分析器和语法分析器的源代码,还包括语意分析,对大家都会有所帮助的。-Lexical analyzer and parser on the source code, but also semantic analysis, everyone will be helpful.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:17617
    • 提供者:彭成忠
  1. bianyiqi

    0下载:
  2. 有词法分析,用的是SLR语法。语义子程序,说明报告里有全部的操作过程,及完整的源代码。-A lexical analysis, syntax using a SLR. Semantic routines, that report has all the operation, and the complete source code.
  3. 所属分类:Compiler program

    • 发布日期:2017-05-03
    • 文件大小:1513673
    • 提供者:
  1. 10803070102_daiyongchuan

    0下载:
  2. 其中包括词法分析器和语法分析器,还包括预测分析法以及正规式转换为不确定的有穷自动机、 不确定的有穷自动机转换为确定的有穷自动机- Including the lexical analyzer and parser, but also forecast analysis and formal style uncertainty into finite automata, finite automata uncertainty into a deterministic finite aut
  3. 所属分类:Compiler program

    • 发布日期:2017-06-22
    • 文件大小:42417131
    • 提供者:郭晓峰
  1. PL0AnalyzeXB

    0下载:
  2. 编译原理试验中,实现对pl0的词法分析,语法语义分析及符号表-Compiler theory test, to achieve pl0 lexical analysis, semantic analysis and symbol table
  3. 所属分类:Compiler program

    • 发布日期:2017-04-06
    • 文件大小:473792
    • 提供者:sjq
  1. bianyi

    0下载:
  2. 简单的编译环境,实现了词法、语法、语义分析,以及二元式、四元式的产生-Simple compilation environment, to achieve the lexical, syntax, semantic analysis, and binary type, quaternary-based generation
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:115534
    • 提供者:张氏
  1. [C--traps].(american)Andrew.Koenig

    0下载:
  2. 帮助C程序员绕过编程过程中的陷阱和障碍,分别以词法分析,语法语义、连接、库函数、预处理器,可移植性缺陷等几个方面分析了C编程中可能遇到的问题-Programming help C programmers to bypass the traps and obstacles in the process, respectively, lexical analysis, semantic, connection, library function, preprocessor, portability,
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-18
    • 文件大小:4908943
    • 提供者:jiangyanyan
  1. gammar

    0下载:
  2. 词法分析器和语法分析器,递归下降和预测表分析的方法-Lexical analyzer and parser, recursive descent methods of analysis and prediction table
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:7263
    • 提供者:paramiao
  1. yufafenxi

    0下载:
  2. 在vc下写了一个关与编译原理的语法四元式分析程序分为词法和语法部分-Wrote under the vc off with a compiler theory of syntax analysis procedure is divided into four yuan-type part of the lexical and syntax
  3. 所属分类:Compiler program

    • 发布日期:2017-04-05
    • 文件大小:6518
    • 提供者:zhangyx
  1. JavaGrammar-

    3下载:
  2. Java语言子集语法、语义分析器 实现的Java语言子集文法 <Sw>  while(Er)S <Er>  Vc < Vc | Vc > Vc <S>  标识符= Ex // 标识符使用词法分析识别结果 <Vc>  标识符 | 整常数 // 标识符、整场数使用词法分析识别结果 <Ex>  Vc P Ex | Vc
  3. 所属分类:Compiler program

    • 发布日期:2016-06-10
    • 文件大小:805888
    • 提供者:genganpeng
  1. CMMCompiler

    0下载:
  2. CMM语言(c-minus-minus)语言的解释器。相对于一些基本的程序而言,本系统具有以下几个特点: 1.基本功能: 支持int,real等简单类型,支持相应简单数组; 支持while,if,else语句; 基本数值运算:+,-,*,/; 2.语句拓展 支持char,string等类型,同时支持相应类型数组,与常量声明; 完全支持for,break ;switch(case,default)continue等语句; 支持 ,++,--,+=,-=,*=,/=等
  3. 所属分类:Compiler program

    • 发布日期:2017-05-28
    • 文件大小:10824966
    • 提供者:Emperor
  1. JSQFinal

    0下载:
  2. 编译原理课程设计,CMM 是一种经过简化的 C 语言,CMM 解释器是一个 CMM 语言 的集成开发环境,经过词法、语法和语义的分析,通过递归下降子程序法对 CMM 语言 进行解释执行。此解释器可以实现几种基本数据类型的表达式计算、隐式转换和强制转 换,循环语句的控制,多维数组的处理,函数调用和重载,变量作用域限制等功能。IDE 能够进行代码自动缩近、语法高亮、撤销重做、括号匹配、错误检查标记、函数定位、 快速注释、输出语法树等。 -CMM is a programming
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:229436
    • 提供者:
  1. hit_complier

    0下载:
  2. 哈工大编译原理课设,功能齐全,词法,语法以及语义分析-HIT compiler theory class-based, fully functional
  3. 所属分类:Compiler program

    • 发布日期:2017-05-30
    • 文件大小:12498307
    • 提供者:piglet
  1. shiyan

    0下载:
  2. 手工实现对c减语法的词法分析,采用的语言是java语言,对指定文件的语法进行分析。-The hand-c reduction syntax lexical analysis, the language used is java language, to analyze the syntax of the specified file.
  3. 所属分类:SCSI/ASPI

    • 发布日期:2017-04-04
    • 文件大小:7444
    • 提供者:余红全
  1. java-c-minus

    0下载:
  2. 采用java语言,对c减语法实现手工词法分析,分析的源文件路径是指定的。-The java language manual lexical analysis, analysis of c less syntax of the source file path is specified.
  3. 所属分类:软件工程

    • 发布日期:2017-03-29
    • 文件大小:7516
    • 提供者:余红全
  1. SA

    0下载:
  2. 编译原理课程的语法和词法翻译程序,使用的是LL(1)分析方法-Compiler theory curriculum of grammar and lexical translation process, using the LL (1) analytical methods
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:412807
    • 提供者:dodo
  1. byyl

    0下载:
  2. 编译原理的词法分析,语法分析器,利用细化的递归下降实现。-Compiler theory, lexical analysis, parser, the use of recursive descent of the refinement to achieve.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:3042
    • 提供者:tx
  1. TCCoompileh

    0下载:
  2. 本程序源码是用CSHARP写的一个编译器,实现了词法,语法,语语义分析与中间代码生成,输出结果功能 可直接使用。 已通过测试。 -The program source code is the CSHARP write a compiler, the lexical, syntax, language semantic analysis and intermediate code generation, the output function can be used directly. Has
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:333920
    • 提供者:对称
  1. minicompiler

    0下载:
  2. 一个简易的编译器,包括了词法,语法,和语义分析。-A simple compilers, including lexical, syntax and semantic analysis.
  3. 所属分类:Compiler program

    • 发布日期:2017-05-24
    • 文件大小:8146290
    • 提供者:胥涛
« 1 2 ... 45 46 47 48 49 50»
搜珍网 www.dssz.com