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

搜索资源列表

  1. 20051124

    0下载:
  2. 用于lex和yacc的c++及c语言的文法,可用来构造C++语言的编译器-for lex and generates a c c language and grammar, can be used to construct the C language compiler
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:64815
    • 提供者:王小波
  1. LexSeu

    0下载:
  2. 东南大学 课程设计 lex部分 说 明 **本次实验在Visual C++6.0环境下开发** 主要有以下文件: 1 词法分析器 lex.cpp 2 头文件 lex.h 3 测试文件 lex.l.txt lex工具的使用方法 编译运行 lex.cpp/lex.h,这样就将lex.l.txt转换成Cpp语言程序yylex.cpp 然后使用VC++6.0将lexyy.cpp编译成可执行程序, 这样就识别出了lex.l.t
  3. 所属分类:.net编程

    • 发布日期:2008-10-13
    • 文件大小:10635
    • 提供者:myname
  1. Yacc1824_ref_951

    0下载:
  2. Yacc说明及使用文档 yacc(Yet Another Compiler Compiler),是Unix/Linux上一个用来生成编译器的编译器(编译器代码生成器)。yacc生成的编译器主要是用C語言寫成的语法解析器(Parser),需要与词法解析器Lex一起使用,再把兩部份產生出來的C程序一併編譯。yacc本來只在Unix系統上才有,但現時已普遍移植往Windows及其他平台。
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:525751
    • 提供者:石头
  1. ANSIC

    1下载:
  2. c语言的词法lex文件和语法yacc文件。有一点小问题,需要稍稍修改才能编译
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:5062
    • 提供者:陈旭东
  1. 实习程序文法-C

    0下载:
  2. 是一个关于实习程序文法的程序段,它是对LEX编译文法的框架,在编写程序时很有用.-is a practical procedure for the process of grammar, it is LEX grammar compiler framework, in the preparation process very useful.
  3. 所属分类:ListView/ListBox

    • 发布日期:2008-10-13
    • 文件大小:1539
    • 提供者:杨敏
  1. Lex.rar

    0下载:
  2. 1.输入文件解析 2.正则表达式转化为NFA 3.多个NFA合并 4.NFA转换DFA 5代码生成 关于输入文件格式: 没有考虑对lex输入文件的出错处理,所以输入文件务必严格书写正确。 Lex中的正规表达式使用了以下运算符: [] | * @ ( ) 并且正规表达式中不能出现其他的子正规表达式。 如果想要在待识别的正则式中使用上述运算符,请使用转义符号,即\。 例如,如果想用*,可以写成\* ,1. Analysis of the input file 2.
  3. 所属分类:Windows编程

    • 发布日期:2017-03-22
    • 文件大小:17588
    • 提供者:顾添锦
  1. lex

    0下载:
  2. 编译原理试验使用c语言写的 不过写的很简单希望对初学者能够有些帮助-The principle of experimenting with the use of the compiler written in c language written in very simple but would like to have some help for beginners
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:1372
    • 提供者:sd
  1. lex

    0下载:
  2. lex, mini c complier.
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:372952
    • 提供者:Han
  1. lex

    0下载:
  2. lexical analyzer in c language
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:1638
    • 提供者:manjit2990
  1. lex.yy

    0下载:
  2. A lex program implementation in c
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-30
    • 文件大小:12267
    • 提供者:Ramana
  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-and-syntax-

    0下载:
  2. 用C语言编写的一个特定文法的词法分析器,内有文法描述PPT和实验指导书,电子科技大学的编译原理实验哦-Using C language of a particular grammar lexical analyzer, there grammar descr iption PPT and guide books, the University of Electronic Science and Technology Compiler Principle Experiment oh
  3. 所属分类:Shell api

    • 发布日期:2017-11-12
    • 文件大小:2514474
    • 提供者:许鑫鹏
  1. lex

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

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

    0下载:
  2. 用c++编写的词法分析器,可以识别20个保留字,常数,运算符以及标识符。-Written by c++ lexical analyzer can identify 20 reserved words, constants, operators, and identifiers.
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:1221
    • 提供者:cc
  1. lex

    0下载:
  2. 一段编译器程序,用C++环境开发,用到windows文件-a piece of code to do the compiler
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-07
    • 文件大小:1397680
    • 提供者:lx
  1. lex

    0下载:
  2. 编译原理,词法分析器的实现,使用的语言是C语言,在LINux环境下运行没有问题.- Compiler theory lexical analyzer to achieve, the language used is C language environment in LINux run without problems.
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:1434
    • 提供者:
  1. lex

    0下载:
  2. 模仿lex根据规则自动生成词法分析器c源码,应用环境linux,g-Imitate lex lexical analyzer c source code is automatically generated according to the rules, the application environment linux, g++
  3. 所属分类:Other systems

    • 发布日期:2017-05-05
    • 文件大小:303787
    • 提供者:杨晋
  1. 19215123胡玲

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

    • 发布日期:2018-01-06
    • 文件大小:167936
    • 提供者:胡小力
  1. 基于LEX的C语言词法分析器

    0下载:
  2. 基于LEX的C语言 词法分析器 可能不对 但是有参考价值(The C language analyzer based on LEX may not be of reference value)
  3. 所属分类:其他

    • 发布日期:2018-01-08
    • 文件大小:216064
    • 提供者:cuihang
  1. lex词法分析_上交程序

    0下载:
  2. 相当完整lex词法分析_上交程序, Lex 快速入门(词法分析和语法分析)(Lex represents Lexical Analyzar, a.Lex file (the Lex file has an extension of.Lex) passed through the lex utility and generates the output files of C, which are later compiled into an executable version of the le
  3. 所属分类:其他

    • 发布日期:2018-05-01
    • 文件大小:223232
    • 提供者:calacala
« 12 »
搜珍网 www.dssz.com