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

搜索资源列表

  1. 词法分析2004328831139

    0下载:
  2. 前些天写了个小语言的词法分析程序,因为前些天在VC知识库看到一个pascal词法分析的程序,觉得写得挺复杂的。其实词法分析程序的原理都是一样的,所以我想只要搞明白了简单的词法分析程序,再写复杂的就不难了,无非是多加几个关键字,多写几个条件判断语句而已。词法分析是编译程序的基础,也是最简单的。好,现在让我们看程序吧。 先让我们看看这个小语言的文法吧-few days ago wrote a small language lexical analysis procedures, because th
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:74584
    • 提供者:陈 美
  1. 词法分析程序

    0下载:
  2. /*** *****词法分析程序*** *****/ # include<iostream.h> # include<fstream.h> # include<math.h> int cc=0 -/*** ***** lexical analysis procedure *** *****/ # includelt; Iostream.hgt; # Includelt; Fstream.hgt; # Includelt; Math.hgt; Int cc =
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:8041
    • 提供者:白天
  1. 词法

    0下载:
  2. 这是一个词法分析器,、实验内容: 1. 设计扫描器的自动机; 2. 设计翻译、生成Token的算法; 3. 编写代码并上机调试运行通过。 • 要求:输入——源程序文件; 输出——(1)相应的Token序列; (2)关键字、界符表,符号表,常数表。-This a lexical analyzer, and the contents : 1. The design of automatic scanner machine; 2. Design translation, the Token
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:5794
    • 提供者:石青
  1. 编译原理—词法分析和语法分析 实验报告

    2下载:
  2. 词法分析,LL1语法分析,语义分析,中间代码生成,中间代码优化(常表达式优化,公共表达式优化,循环不变式优化),中间代码生成目标代码,目标代码-lexical analysis, LL1 syntax analysis, semantic analysis and code generation and code optimization (regular expression optimization, public expression optimization, optimization
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:52082
    • 提供者:张学友
  1. 我编写的编译原理实验的词法分析程序

    0下载:
  2. 词法分析程序,不用多说了,算法是我优化了n久的,给大家参考一下-lexical analysis procedure Needless to say, I optimization algorithm is a long n, for your reference
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:2591
    • 提供者:冯亮
  1. c语言词法分析程序

    0下载:
  2. .X语言词法分析程序的设计 目的:设计、编制、调制一个具体的词法分析程序,加深对词法分析原理的理解。 要求: (1)通过理解正规式、有限自动机原理,根据下面的X语言的说明编制一个X语言的词法分析程序。 (2)提交实验报告,报告内容如下: 目的要求、DFA、程序清单(带注释)、测试样例及结果
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:33549
    • 提供者:萧飞
  1. 编译原理——词法分析

    0下载:
  2. 该程序是词法分析部分Lexical Analyse。 2)只支持无符号整数类型。不支持数组和指针等高级特性。 3)不支持函数。-that the procedure was lexical analysis Lexical Analyze. 2) only support unsigned integer type. Do not support pointer array and advanced features. 3) does not support function.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2345
    • 提供者:范志鸿
  1. pacal词法分析

    0下载:
  2. 该程序是在C下的对TP的简单的词法分析,利用该程序可以分析简单的程序,别的也没有了,就是这些了-the program is the C of the right TP simple lexical analysis, using the program can analyze a simple procedure, nor the other, which is a
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:4607
    • 提供者:刘平
  1. 一个很不错的词法分析器

    0下载:
  2. 很不错,已经过调试,是一个经典的词法分析器源代码,值得-very good, it has been testing, is a classic lexical analyzer source code, it is worth a look at
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:385895
    • 提供者:刘畅
  1. 编译原理词法分析器(V2.0)

    0下载:
  2. 编译原理词法分析器(V2.0) 提供了词法分析的所有功能,能完成词法分析的所有任务-compiler theory lexical analyzer (V2.0) provides a lexical analysis of all functions, lexical analysis can be completed all the tasks
  3. 所属分类:编辑器/阅读器

    • 发布日期:2008-10-13
    • 文件大小:239711
    • 提供者:林丰
  1. WANG词法分析-编译

    0下载:
  2. 一个简单的词法分析器,1代表字符,2代表关键字(命令字),4带表算符界符, 注:要把wangs.txt这个文件放在桌面上,然后在这个TXT里写上你要识别的语句。然后保存后关毕,在运行WANG词法分析.EXE进行词法分析。 完成识别后,会在相应的词面前出现以上代号。暂不能对数字进行识别。因为在某种请况下数字也可表是为字符……稍有困难,但完成老师的针对程序段:area=b+c*d。那简直是小菜一碟。-a simple lexical analyzer, a representative charac
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:11528
    • 提供者:linlins
  1. 词法分析报告

    0下载:
  2. 这是一个编译原理中词法分析的实验报告,内容挺完整-it is a test report about accidence analyse of complier principle,its context is full
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:226883
    • 提供者:ddd
  1. 编译小程序-词法分析

    0下载:
  2. 这是一个用C++编写的编译原理的词法分析程序,希望对各位学习编译的同学有一定帮助-This is a C compiler prepared by the tenets of lexical analysis procedure, and I hope to learn from you and the compiler will definitely help students
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:1778
    • 提供者:陈陪
  1. 编译词法语法

    0下载:
  2. PL/0语言的词法分析,主要是将每个词识别并且读入-PL / 0 language lexical analysis, mainly to identify each word and read
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:38362
    • 提供者:周周
  1. 小小的词法分析器

    0下载:
  2. 这是我们学习编译原理时做的一个程序. 是一个简单的词法分析程序.将一个文本文件时的推导规则进行.-This our compiler theory when learning to do a procedure. It is a simple lexical analysis procedure. A text file of the derivation rules.
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:2091
    • 提供者:周裕涛
  1. 词法分析小例子c

    0下载:
  2. 通过设计编制调试一个具体的词法分析程序,加深对词法分析原理的理解。并掌握在对程序设计语言源程序进行扫描过程中将其分解为各类单词的词法分析方法。- And the hands of the right programming language source for the scanning process of decomposition of various word lexical analysis methods.
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:8101
    • 提供者:张明
  1. 词法语法分析器

    2下载:
  2. 一个超级经典的词法和语法分析程序(附加源代码).从词法分析的输出过渡到语法分析-a super classic morphology and syntax analysis program (Additional source code). Lexical analysis from the output transition to the syntax analysis
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:276935
    • 提供者:鲍婧
  1. 词法语法分析

    1下载:
  2. 一个经典的词法语法分析程序的源代码,从词法分析入口其词法分析出口为语法分析入口-a classic syntax analysis of a program's source code, imported from the lexical analysis of its lexical analysis exports syntax analysis entrance
  3. 所属分类:其他嵌入式/单片机内容

    • 发布日期:2008-10-13
    • 文件大小:230787
    • 提供者:鲍婧
  1. 词法语法分析器

    1下载:
  2. 学习编译原理时做的词法和语法分析程序.词法和语法分析封装在一个类CFenXi中, 程序在Visual C++6.0下调试通过. 程序采用单文档设计,利用了分割窗体技术-compiler theory when learning to do morphology and syntax analysis procedures. Morphology and syntax analysis package in a category CFenXi, the process in Visual C 6.
  3. 所属分类:

    • 发布日期:2008-10-13
    • 文件大小:317307
    • 提供者:习可伟
  1. 词法分析小程序

    0下载:
  2. 一个小语言的词法分析程序,可以给初学者试试手,很不错的哦.. -Accidence anlysis program of a small language,can used by beginner,is ok...
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:44771
    • 提供者:苏亮
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 50 »
搜珍网 www.dssz.com