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

搜索资源列表

  1. Sample4_1

    0下载:
  2. 词法分析器,实现简单的词法分析程序,可以为以后的语法分析打下很好的基础-Lexical analysis
  3. 所属分类:Dialog_Window

    • 发布日期:2017-05-07
    • 文件大小:1928094
    • 提供者:徐廷俊
  1. Lexical-analysis

    0下载:
  2. 词法分析是指将我们编写的文本代码流解析为一个一个的记号,分析得到的记号以供后续语法分析使用。词法分析器的工作是低级别的分析:将字符或者字符序列转化成记号.。-Lexical analysis stream parsing the text code that we write as a token analysis of the resulting mark for subsequent parsing use. Lexical analyzer' s job is low-level a
  3. 所属分类:JavaScript

    • 发布日期:2017-11-05
    • 文件大小:100730
    • 提供者:锡睿
  1. NO3

    0下载:
  2. 编译原理的语法,词法分析器,能够正确进行语法、词法分析,运行环境为Windows2000/XP-Compiler Construction Principles of grammar, lexical analyzer that can correct grammar, lexical analysis, runtime environment for Windows2000/XP
  3. 所属分类:Compiler program

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

    0下载:
  2. 一个简单的词法分析器 自己定义的一种语法,需要读取一个文件。-A simple lexical analyzer its own definition of a grammar, need to read a file.
  3. 所属分类:Compiler program

    • 发布日期:2017-05-03
    • 文件大小:660128
    • 提供者:meng
  1. 0408010124

    0下载:
  2. 编写关于编译原理知识的基本语法树和词法分析器,有完整的报告格式-Compiler knowledge about the preparation of the basic principles of grammar and lexical analyzer tree, has a complete report format
  3. 所属分类:Compiler program

    • 发布日期:2017-04-15
    • 文件大小:6971
    • 提供者:幸运草
  1. Syntaxlexicalanalyzer

    0下载:
  2. 自己做的一个编译器的语法 词法分析器!对初学编译器的很有用。-Own a grammar compiler lexical analyzer! Compiler for learning useful.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-04
    • 文件大小:253805
    • 提供者:Mr yang
  1. student-servlet

    0下载:
  2. C语言小型分析器实验报告1) 待分析的简化C语言的词法说明; 2) 单词符号的种别编码方案; 3) 所识别的各类单词符号的正规式或状态转换图; 4) 待分析的简化C语言的语法规则说明; 5) 所采用的语法分析方法的算法思想和主要步骤; 6) 完成语法制导翻译(翻译成后缀式)所用的翻译模式;(部分同学如果完成不了这部分内容就不要写) 7) 程序的主要算法思想和主要函数的算法思想及流程; 8) 对全局数据结构的说明 -according to the IP addr
  3. 所属分类:Jsp/Servlet

    • 发布日期:2017-04-01
    • 文件大小:705509
    • 提供者:谢问东
  1. Grammar

    0下载:
  2. 这是编译原理中语法词法分析器分析器的实现 -This is a principle in the grammar compiler lexical analyzer Analyzer to achieve
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:230697
    • 提供者:haidiliehuo
  1. LR

    1下载:
  2. 1.实验目的 设计一个LR分析器,实现对表达式语言的分析,加深对LR语法分析方法的基本思想的理解,掌握LR分析器设计与实现的基本方法。 2.实验要求 建立文法及其LR分析表表示的数据结构,设计并实现一个LALR(1)的分析器,对源程序经词法分析后生成的二元式代码流进行分析,如果输入串是文法定义的句子则输出“是”,否则输出“否”。 3.实验内容 (1)文法描述及其LALR(1)分析表 描述表达式语言的文法G如下: -1. The experiment was to de
  3. 所属分类:Compiler program

    • 发布日期:2016-10-18
    • 文件大小:290259
    • 提供者:sh_xj
  1. lex

    0下载:
  2. c-词法分析器,实现了词法分析和简单的语法token提取功能-C minus analysis
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:43993
    • 提供者:张龙
  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. 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. 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. bian-yi-yuan-li-kechengsheji

    1下载:
  2. 编译原理课程设计:建立文法及其LL(1)分析表表示的数据结构,设计并实现相应的预测分析器,对源程序经词法分析后生成的二元式代码流进行预测分析,如果输入串是文法定义的句子则输出“输入串分析成功”,否则输出“输入串语法错误”。-Principles of Course Design Compiler: A Grammar and LL (1) of the table that the data structure, design and implement the corresponding pr
  3. 所属分类:Compiler program

    • 发布日期:2017-03-26
    • 文件大小:101741
    • 提供者:
  1. upkeshe

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

    • 发布日期:2017-03-29
    • 文件大小:3725
    • 提供者:haitao
  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. Tiny

    2下载:
  2. 一个用c++写的表驱动的词法分析器,所分析语法是编译原理上的tiny语言- a table-driven lexical analyzer with using c++
  3. 所属分类:Compiler program

    • 发布日期:2016-05-08
    • 文件大小:710656
    • 提供者:windblueos
  1. SeuLex

    0下载:
  2. 本源码为自行开发的兼容C文法格式的词法分析器LEX,能实现Mini C的简单词法分析功能,并作为语法分析程序的输入。开发环境为VS2008-The source code is a self-developed format compatible with C grammar, lexical analyzer LEX, Mini C to achieve a simple lexical analysis, and as the input parser. Development enviro
  3. 所属分类:Compiler program

    • 发布日期:2017-04-09
    • 文件大小:1958075
    • 提供者:sunfulin
« 1 2 ... 9 10 11 12 13 1415 16 »
搜珍网 www.dssz.com