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

搜索资源列表

  1. bianyiyuanli.rar

    0下载:
  2. 一. 实验目的: 设计、编写和调试一个具体的词法分析程序,加深对词法分析理论和自动词法分析工具的理解、实践和掌握。 二. 实验要求: ① 学习和理解正则表达式理论,写出C—语言的记号的完整的正则表达式;(适当使用正则定义) ② 学习和理解有限机理论,根据前面的正则表达式,用基于经验的方法画出C—语言的记的DFA图; ③ 用基于DFA图的算法编写C—语言的词法分析程序; ④ 学习词法分析程序的自动生成工具,使用LEX工具实现C—语言的词法分析程序.
  3. 所属分类:编译器/词法分析

    • 发布日期:
    • 文件大小:147597
    • 提供者:
  1. c_compiler.zip

    0下载:
  2. 本程序集是Allen I. Holub所写的《Compiler Design in C》一书的附随软件,其中有作者自己编写的词法分析和语法分析工具LeX,occs和LLama,该软件包还包括一个显示C语言分析过程的程序
  3. 所属分类:编译器/词法分析

    • 发布日期:
    • 文件大小:224976
    • 提供者:
  1. 编译原理及实践

    1下载:
  2. 目      录 译者序 前言 第1章   概论 1 1.1   为什么要用编译器 2 1.2   与编译器相关的程序 3 1.3   翻译步骤 5 1.4   编译器中的主要数据结构 8 1.5   编译器结构中的其他问题 10 1.6 &
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-04-25
    • 文件大小:7612048
    • 提供者:wesong
  1. cscanner

    0下载:
  2. 一个使用Lex编写的C语言词法加亮的小程序。能将指定的C源程序进行词法加亮,并以HTML文件的格式输出。 由Lex的C语言词法分析程序,然后使用VC编译,内附较详细的使用说明。-Lex prepared to use a C-plus morphology of small programs. Can designated source for the C-plus morphology, and the HTML file format. Lex from the C language lex
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:104204
    • 提供者:陈凯
  1. ansi_lex

    0下载:
  2. 标准C的词法分析的Lex文件,可以用lex来 编译生成标准C的词法分析部分-standard C lexical analysis Lex documents can be used to lex standard C compiler generation of lexical analysis
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:1570
    • 提供者:yyf
  1. lex.l

    0下载:
  2. 编译原理实验,词法分析例子,简单的说明lex的理解-Compiler principle experiment, the lexical analysis example, a simple descr iption of the understanding of the lex
  3. 所属分类:Compiler program

    • 发布日期:2017-04-06
    • 文件大小:705
    • 提供者:meijie
  1. lex

    0下载:
  2. <编译原理课程设计>基于lex自动实现词法分析,完成词法分析功能-< Compiler theory of curriculum design> based on the lex lexical analysis automatically to complete the lexical analysis function
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:228958
    • 提供者:
  1. lex

    0下载:
  2. 利用C语言实现编译原理中的词法分析,供大家学习参考。-C language compiler theory of lexical analysis, and for everyone to learn the reference.
  3. 所属分类:其他小程序

    • 发布日期:2017-03-28
    • 文件大小:2256
    • 提供者:朱俊杰
  1. lex

    0下载:
  2. 源语言是PL0语言,PL0语言是PASCAL语言的子集。通过完成扩展的PL0词法分析程序,掌握词法分析实现机制。-The source language is a the the PL0 language, the PL0 language is a subset of the PASCAL language. By completion of the extended the the PL0 lexical analysis of the program, master lexical ana
  3. 所属分类:其他小程序

    • 发布日期:2017-04-05
    • 文件大小:2195
    • 提供者:叶素芬
  1. cifa3

    0下载:
  2. lex 词法分析程序 以及parser generator 和vc6如何配置 -lex lexical analyzer and parser generator and vc6 how to configure
  3. 所属分类:Other systems

    • 发布日期:2017-04-01
    • 文件大小:1000368
    • 提供者:薄冰冬雪
  1. lex

    0下载:
  2. 编译原理实验词法分析,主要是要看懂词法分析程序是做个什么的-Compiler principle experiment lexical analysis
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:817144
    • 提供者:chen
  1. lex

    0下载:
  2. 编译原理的pascal 语言的词法分析并产生二元式-Pascal language compiler theory lexical analysis and generate binary type
  3. 所属分类:Compiler program

    • 发布日期:2017-11-28
    • 文件大小:815
    • 提供者:蒋摇
  1. lex

    0下载:
  2. 设计并实现 C 语言的词法分析程序,要求如下。 (1) 可以识别出用C语言编写的源程序中的每个单词符号,并以记号的形式输出每个单词符号。 (2) 可以识别并读取源程序中的注释。 (3) 可以统计源程序中的语句行数、单词个数和字符个数,其中标点和空格不计算为单词,并输出统计结果。 (4) 检查源程序中存在的非法字符错误,并可以报告错误所在的行列位置。 (5) 发现源程序中存在错误后,进行适当的恢复,使词法分析可以继续进行,通过一次词法分析处理,可以
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:3240
    • 提供者:何狗
  1. lex

    0下载:
  2. 基于C语言编写的词法分析实验,能够对短语进行分析并给出正确的标志符号。-Based on the C language lexical analysis of experiments, analysis and be able to give the correct phrase glyph.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-25
    • 文件大小:286427
    • 提供者:Toby
  1. LEX

    0下载:
  2. 词法分析程序自动工具使用说明,掌握词法分析的知识-Lexical analysis tools automatically use, acquire knowledge of lexical analysis
  3. 所属分类:Compiler program

    • 发布日期:2017-04-27
    • 文件大小:297279
    • 提供者:孙亭
  1. Lex

    0下载:
  2. 编译原理,词法分析程序,是用用Lex做的词法分析-It is a part of complier using Lex
  3. 所属分类:Java Develop

    • 发布日期:2017-04-24
    • 文件大小:10168
    • 提供者:肖旭东
  1. ast

    0下载:
  2. 利用lex词法分析和yacc语法分析编写的简单编译器,主要完成实数和整型数据的加减乘除以及循环语句,条件语句,while语句,赋值语句等的处理-Use yacc lex lexical analysis and parsing write a simple compiler, mainly to complete the addition, subtraction and loops of real and integer data processing conditional statemen
  3. 所属分类:Compiler program

    • 发布日期:2016-06-16
    • 文件大小:2227200
    • 提供者:zlt
  1. lex

    0下载:
  2. 一个简单的词法分析程序。用来将输入的程序根据其字符串的性质转换为内部编号-A simple lexical analysis program. Program for converting the input number according to the nature of its internal string
  3. 所属分类:Compiler program

    • 发布日期:2017-05-09
    • 文件大小:1726562
    • 提供者:devinlyons
  1. lex

    0下载:
  2. 词法分析器又称扫描器。词法分析是指将我们编写的文本代码流解析为一个一个的记号,分析得到的记号以供后续语法分析使用。词法分析器的工作是低级别的分析:将字符或者字符序列转化成记号。-Lexical analyzer, also known as scanners. Lexical analysis refers to the text of the code we write flow analysis for a token one, analyze the resulting syntax no
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:256304
    • 提供者:周慕白
  1. 19215123胡玲

    0下载:
  2. pl0语言的词法分析器 lex 自动构造工具(pl0 lex c c++ yyac bainyiyuanli)
  3. 所属分类:其他

    • 发布日期:2018-01-06
    • 文件大小:167936
    • 提供者:胡小力
« 1 2 34 5 6 »
搜珍网 www.dssz.com