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

搜索资源列表

  1. bianyiyuanli

    2下载:
  2. 我的编译原理实验,包括一个词法分析器,一个酸腐优先的语法分析器,一个语义分析器-I compiled the experiment, including a lexical analyzer, a priority酸腐parser, a semantic analyzer
  3. 所属分类:Speech/Voice recognition/combine

    • 发布日期:2015-01-11
    • 文件大小:10115
    • 提供者:王家玮
  1. LL1

    0下载:
  2. 自上而下语法分析器设计,词法分析器调用接口为lex()-Top-down parser design, call the lexical analyzer interface lex ()
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:21611
    • 提供者:王德龙
  1. pl0

    1下载:
  2. 编译方法实验根据编译器的工作过程,分为以下三个部分 词法分析 语法分析 语义分析和代码生成 三部分之间互相关联,最终完成三个实验后,就实现了C- -言(C++语言的子集)或PL0语言的编译器。 -Methods compiled in accordance with the work of the compiler process, divided into the following three-part analysis of lexical semanti
  3. 所属分类:Compiler program

    • 发布日期:2017-03-21
    • 文件大小:62067
    • 提供者:田月
  1. Lexeme

    0下载:
  2. 一个自己制作的词法分析器,界面做的还算美观,功能基本可以实现,可以分析PL0语法,可能还存在一些没有测试出来的BUG,有兴趣的朋友可以一起交流学习,QQ84544838-A lexical analyzer to produce their own interface to do the still beautiful, the basic functions can be achieved, can be analyzed PL0 grammar, there are still some m
  3. 所属分类:Compiler program

    • 发布日期:2017-04-17
    • 文件大小:29438
    • 提供者:王韵鹏
  1. my

    0下载:
  2. flex 词法分析器 识别token单元-syntax analysis
  3. 所属分类:Compiler program

    • 发布日期:2017-04-13
    • 文件大小:2170
    • 提供者:hy
  1. cifafenxi

    0下载:
  2. 简单的词法分析器 编译课程综合训练 java语言 -Simple lexical analyzer to compile a comprehensive training course java language
  3. 所属分类:Compiler program

    • 发布日期:2017-04-15
    • 文件大小:5778
    • 提供者:rxg
  1. Main

    0下载:
  2. java语言写的词法分析器,编译原理课的实验源代码-written in java language lexical analyzer, the principle of classes to compile the source code of the experiment
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:2891
    • 提供者:gaoxiang
  1. Lexical

    0下载:
  2. 用JAVA实现的词法分析器 对学习编译原理作用很大哦-JAVA achieved by lexical analyzer to study the role of compiling principle Oh great
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:11125
    • 提供者:赵刚
  1. cffxq

    0下载:
  2. 词法分析器实验报告,内容详细,步骤很完整,有利于新人进一步认识学习编译原理-Lexical analyzer test report in detail, the steps are complete, is conducive to study and compile a better understanding of new principles of
  3. 所属分类:Compiler program

    • 发布日期:2017-03-27
    • 文件大小:19337
    • 提供者:Michael
  1. CompileDesign

    0下载:
  2. 本次课程设计主要实现语法分析器的构造,该语法分析器能够分析词法分析器的结果,即单词二元式。在输入单词二元式后,能输出分析的结果。 1、构造LL(1)分析表 2、求句子的预测分析过程-The main achievement of the curriculum design of the structure parser, the syntax analyzer to analyze the results of lexical analyzer, that is, the dual-ty
  3. 所属分类:Compiler program

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

    0下载:
  2. 一个语法编译程序,包括词法分析器、语法分析器以及实现对简单程序设计语言中的逻辑运算表达式、算术运算表达式、赋值语句、IF语句、While语句以及do…while语句进行编译,并生成中间代码和直接生汇编指令的代码生成器-a english compile
  3. 所属分类:Compiler program

    • 发布日期:2017-05-11
    • 文件大小:2710829
    • 提供者:yangjun
  1. LexicalAnalyzerByGGspeed

    0下载:
  2. 用Flex自动生成的词法分析器源码,内附所有源文件和使用说明-Automatically generated by Flex lexical analyzer source, containing all the source files and use
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:256280
    • 提供者:speed
  1. sample

    0下载:
  2. 按simple规则编写的二元式词法分析器和四元式语法分析器。-Prepared according to simple rules of binary-style lexical analyzer and quaternary-style parser.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:87200
    • 提供者:longlong
  1. cifafenxiqi

    0下载:
  2. 实现一个词法分析器,词法分析程序的主要任务是从左到右扫描每行源程序,拼成单词,换成统一的内部表示 (token)输出,送给语法分析器。具体包括: –组织源程序的输入; –按规则拼单词,并转换成二元形式; –滤掉空白符,跳过注释、换行符及一些无用的符号(如字符常数的引号) (实验一已完成); –进行行列计数,用于指出出错的行列号,并复制出错部分; –列表打印源程序; –发现并定位词法错误; –生成符号表。token 文件和符号表用作语法分析的输入部分。
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:28856
    • 提供者:何娜
  1. cifa

    0下载:
  2. 词法分析器与递归下降的语法分析器的结合,含有实验报告,用c语言编写-Lexical analyzer and recursive-descent parser combination, containing experimental report, using c language
  3. 所属分类:CSharp

    • 发布日期:2017-03-26
    • 文件大小:155672
    • 提供者:yanjie
  1. programming

    0下载:
  2. 编译原理课程设计,内含词法分析器和语法分析器。-Principles of curriculum design, compilation, containing the lexical analyzer and parser.
  3. 所属分类:Other systems

    • 发布日期:2017-04-07
    • 文件大小:3332
    • 提供者:紫陌
  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. yuyifenxicx

    0下载:
  2. 编译原理实验报告 词法分析器 语义语法分析-Compiler theory lexer semantic parsing
  3. 所属分类:汇编语言

    • 发布日期:2017-04-08
    • 文件大小:10832
    • 提供者:xuanyuan
  1. C-language-WordAnalyse

    0下载:
  2. C语言词法分析器,本C++代码实现了对C语言的分析。是C语言的解释器。-C language lexical analyzer, the C++ code analysis for C language. Is a C language interpreter.
  3. 所属分类:SCSI/ASPI

    • 发布日期:2017-05-11
    • 文件大小:3064222
    • 提供者:fi
  1. bianyi

    0下载:
  2. 我的编译原理实验,包括一个词法分析器,一个酸腐优先的语法分析器,一个语义分析器-I compiled the experiment, including a lexical analyzer, a priority酸腐parser, a semantic analyzer
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:673553
    • 提供者:孔琦
« 1 2 ... 4 5 6 7 8 910 11 12 13 14 ... 50 »
搜珍网 www.dssz.com