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

搜索资源列表

  1. Lexical-analyzer.cpp

    0下载:
  2. 编译原理实验课程中得词法分析器的C++源码,可直接运行-Course C compiler principle experiment was lexical analyzer++ source code, can be directly run
  3. 所属分类:Compiler program

    • 发布日期:2017-04-13
    • 文件大小:2331
    • 提供者:xuzhe
  1. lexical-analysis

    0下载:
  2. 编译原理词法分析,识别程序中的词法类别及种类-Compilation Principle lexical analysis, lexical categories and species identification in the program
  3. 所属分类:Compiler program

    • 发布日期:2017-04-25
    • 文件大小:125177
    • 提供者:张锷
  1. lexical-analysis

    0下载:
  2. 编译原理中的词法分析器的仿制品. 为单一C文件编写. 适合学生-imitation of Translation principle lexical analysis
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-26
    • 文件大小:40844
    • 提供者:可怜世界
  1. Lexical-Analysis

    0下载:
  2. 词法分析编辑器,可识别区分“名称”,“姓名”,以及“符号”。-The purpose of lexical analysis is to convert a sequence of characters into a sequence of tokens,including NAME , NUMBER , SINGLE .
  3. 所属分类:assembly language

    • 发布日期:2017-04-12
    • 文件大小:1022
    • 提供者:jason j
  1. C-language-lexical-analyzer

    0下载:
  2. 使用C#编写的一个简易的C语言词法分析器,对汇编语言的一个活学活用的例子,供大家参考学习。-英语中文德语检测语言 中文(简体)英语日语 翻译文字或网页 使用C#编写的一个简易的C语言词法分析器,对汇编语言的一个活学活用的例子,供大家参考学习。 请键入文字或网站地址,或者上传文档。 取消 Shǐyòng C#biānxiě de yīgè jiǎnyì de C yǔyán cífǎ fēnxī qì, duì huìbiān yǔyán de yīgè huó xu
  3. 所属分类:CSharp

    • 发布日期:2017-04-17
    • 文件大小:115931
    • 提供者:wangbin
  1. Lexical-Analyzer

    0下载:
  2. Lexical Analyzer for compiler
  3. 所属分类:Compiler program

    • 发布日期:2017-04-25
    • 文件大小:19369
    • 提供者:Nijhum
  1. Design-of-C_minus-lexical-analyzer

    0下载:
  2. 1、该个词法分析器要求至少能够识别以下几类单词: a.关键字:else if int return void while共6个,所有的关键字都是保留字,并且必须是小写; b.标识符:识别与C语言词法规定相一致的标识符,通过下列正则表达式定义:ID = letter (letter | digit)*; c.常数:NUM = digit digit*(.digit digit* |ε)(e(+ | - |ε) digit digit* |ε),letter = a|..|z|A|..|
  3. 所属分类:Compiler program

    • 发布日期:2017-04-28
    • 文件大小:32418
    • 提供者:陈景
  1. Lexical-analysis-procedures

    0下载:
  2. 词法分析程序,能够将语句进行词法分析,分出若干单词,运行无误-Lexical analysis procedures, the statement can be lexical analysis, the separation of certain words, running correctly
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-30
    • 文件大小:36325
    • 提供者:lengxue
  1. Lexical-analyzer

    0下载:
  2. 编译原理简单的词法分析器(C++)源码只实现词法分析的部分功能,可根据需要扩充-The sample Lexical analyzer
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:19586
    • 提供者:林瑾
  1. Compiler-theory-lexical-analyzer

    0下载:
  2. 编译原理课程中词法分析器的实现,经测试在VC6.0下可成功编译运行-Compiler theory lexical analyzer to achieve course, has been tested successfully compiled to run under VC6.0
  3. 所属分类:Other systems

    • 发布日期:2017-04-25
    • 文件大小:252053
    • 提供者:梁宏燏
  1. lexical-analyser

    0下载:
  2. lexical analyser for compiler course
  3. 所属分类:Education soft system

    • 发布日期:2017-04-14
    • 文件大小:4790
    • 提供者:hamed
  1. lexical-analyzer

    0下载:
  2. 用递归下降法编写一个语法分析程序,使之与词法分析器结合,能够根据语言的上下文无关文法,识别输入的单词序列是否文法的句子。-Write a parser using recursive descent method, combined with the lexical analyzer makes it possible depending on the context-free grammar of language, whether the input word sequence recogn
  3. 所属分类:Compiler program

    • 发布日期:2017-04-29
    • 文件大小:209490
    • 提供者:xiaowang
  1. lexical-analyzer

    1下载:
  2. 编译原理实验报告 实验一:词法分析器 实验目的: 实现TINY+语言的词法分析程序(扫描程序) 实验内容: 1、词法分析器输入输出 扫描程序的输入是源代码文件,输出是token串。 2、需要遵循“最长串匹配原则”,如匹配字符串‘:=’ 为赋值操作符,而不是冒号和等号两个操作符。 Token 以键值对 (Kind, Value)的形式表示。下面的符号表示不同的token类别(即Kind的取值) KEY 表示保留字 SYM 表示特殊符号 ID 表示标识符
  3. 所属分类:Windows Kernel

    • 发布日期:2016-05-08
    • 文件大小:2717696
    • 提供者:alfred artorius
  1. Lexical-analyzer

    0下载:
  2. 词法分析器,使用C语言编写,编译原理中进行词法分析-Lexical analyzer, using the C language, compiler theory lexical analysis performed
  3. 所属分类:Compiler program

    • 发布日期:2017-04-25
    • 文件大小:223327
    • 提供者:susan
  1. lexical-parser

    0下载:
  2. 这是词法解析器,能完成对输入的一字符串进行词法解析-This is the lexical parser can complete a lexical parsing input strings
  3. 所属分类:Other systems

    • 发布日期:2017-05-03
    • 文件大小:519875
    • 提供者:SUT_fen
  1. Compiler-theory-Lexical-analysis

    0下载:
  2. 编译原理词法分析在VC++6.0上的实现,含有源代码以及实验报告的完整版-Compiler theory lexical analysis implemented on VC++6.0 containing the source code and the full version of the test report
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-29
    • 文件大小:146491
    • 提供者:董迪
  1. Lexical-analysis

    0下载:
  2. 通过设计编制调试一个具体的词法分析程序,加深对词法分析原理的理解。并掌握在对程序设计语言源程序进行扫描过程中将其分解为各类单词的词法分析方法。-By designing preparation of debugging a specific lexical analysis process, to deepen understanding of the principles of lexical analysis. And mastery of programming language sour
  3. 所属分类:Database system

    • 发布日期:2017-04-29
    • 文件大小:12856
    • 提供者:邓三
  1. lexical-analyzer-master

    0下载:
  2. lexical analyzer program first phase of compiler construction download and use for fr-lexical analyzer program first phase of compiler construction download and use for free
  3. 所属分类:Compiler program

    • 发布日期:2017-04-30
    • 文件大小:69299
    • 提供者:emirdeed
  1. lexical.xcodeproj

    0下载:
  2. 词法分析,编译算法中的最基础的词法分析器-lexical analysis
  3. 所属分类:Compiler program

    • 发布日期:2017-05-01
    • 文件大小:15295
    • 提供者:shirley
  1. lexical-analysis

    0下载:
  2. 编译原理中的词法分析实现,是编译原理课中的实验代码-Compiler theory lexical analysis to achieve, is to compile the principle lesson of the experiment code
  3. 所属分类:Other systems

    • 发布日期:2017-05-01
    • 文件大小:49789
    • 提供者:张雷雷
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 50 »
搜珍网 www.dssz.com