CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 编译器/词法分析 搜索资源 - TYPE-C

搜索资源列表

  1. compiler

    0下载:
  2. 一个C语言子集的编译器源码,包括词法分析、语法分析、语法树生成、类型检查、代码生成等编译的完整过程。同是附有详细文档。-A C language subset compiler, source code, including the lexical analysis, syntax analysis, syntax tree generation, type checking, code generation and so the whole process of compilation. Is
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:884253
    • 提供者:winter
  1. bianyizonghe

    0下载:
  2. c语言编写的编译原理综合性实验,实现部分c语言代码段的词法、语法、语义分析,最后输出四元式。 没什么突出的,但是保证是最详细的。-c language compiler principles of comprehensive experiment, c language code to achieve some of the lexical, syntax, semantic analysis, the final output quaternion type. Nothing outsta
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:273722
    • 提供者:陈剑磊
  1. dzcc

    0下载:
  2. 这是我毕设的一部分,毕设做的是C语言编译器,这部分是编译器的词法分析和语法分析。开发平台Visual Stuido 2010。语法分析仅仅是分析语法对不对,如果对会输出“OK”,反之输出“ERROR”词法分析完会把单词和类型列出,类型是我自己定义的枚举值。还有就是我定义了源程序中定义和生命函数时,如果没有参数必须加上"void"参数,否则报错。例如 void main(void){}-This is my part of the my graduation design.My graduatio
  3. 所属分类:Compiler program

    • 发布日期:2017-05-27
    • 文件大小:9810695
    • 提供者:陈子真
  1. PL

    0下载:
  2. 基于C++的PL语言编译器(增加for、case、repeat等语句并扩充实数类型和函数功能)-Based on C++, PL language compiler (increase for, case, repeat and other statements and to expand the type and function of real functions)
  3. 所属分类:Compiler program

    • 发布日期:2017-04-10
    • 文件大小:1232352
    • 提供者:fangjian
  1. myPL0

    0下载:
  2. 本次实验使用平台是Microsoft Visual C++6.0,编程语言是C语言,利用递归下降子程序法实现对一个PL/0源程序中的表达式、各种说明语句、赋值语句进行词法分析和语法分析,完成符号表的管理并能实现确定源码中标识符的类型与二维坐标位置,和赋值语句及表达式中间代码的生成,做的一大亮点是程序有着很严格的出错处理子程序,能确定错误类型和错误位置,能检测输入源程序的开头,数值类型的判断,运算错误检查,变量定义重复性的检查,数值类型的一致性检查,语法错误的检查等多达二十种错误类型。 程序的
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:209616
    • 提供者:马如龙
  1. Code

    0下载:
  2. 动态链接库程序的编写。静态库与动态库的区别,以及调用程序在链接静态库和动态库时的区别。如何利用工具查看动态链接库输出的函数,Depends工具的使用,C++编译器名字改编技术对动态链接库输出函数的影响,extern "C"的用法,利用模块定义文件来解决C++名字改编的问题。用typedef定义指向函数的指针类型,如何获得动态连接库里的函数的指针-Written procedures for the dynamic link library. Static library and dynamic
  3. 所属分类:Compiler program

    • 发布日期:2017-04-06
    • 文件大小:173231
    • 提供者:chuds
  1. Scanner

    0下载:
  2. 词法分析器C++程序,完整代码。 本程序实现Pascal语言子集单词符号的词法分析程序。具体功能为: (1)给出各单词符号的类别编码; (2)词法分析程序应能发现输入串中的错误; (3)词法分析作为单独一遍编写,词法分析结果为二元式序列组成的中间文件; -Lexer C++ program, a complete code. The Program for a subset of Pascal language words symbol of the lexical a
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:186578
    • 提供者:hhy
  1. lex_simple

    0下载:
  2. 简单的lex编程,详细见英文描述 Running the Lex program 1. Write the Lex specifications as described above in a file, say, prog1.l 2. On moon.cse.yzu.edu.tw, do the following: flex prog1.l (Produces lex.yy.c as the output) gcc lex.yy.c -lfl (Compi
  3. 所属分类:Compiler program

    • 发布日期:2017-03-25
    • 文件大小:23265
    • 提供者:yifuren
  1. semantic_analyse_program

    0下载:
  2. 用C++编写的语义分析程序,基于LR文法,能实现词法分析,语法分析,返回相应结果,并返回归约过程和四元式。并附有实验报告和源工程。-Written in C++ semantic analysis program, based on the LR grammar, to achieve lexical analysis, parsing, returns the appropriate result, and return to the process of reduction and quat
  3. 所属分类:Compiler program

    • 发布日期:2017-05-20
    • 文件大小:5905079
    • 提供者:淼淼
  1. comlier1

    1下载:
  2. 设计SAMPLE语言的词法分析器 检查要求: a) 启动程序后,先输出作者姓名、班级、学号(可用汉语、英语或拼音); b) 请求输入测试程序名,键入程序名后自动开始词法分析并输出结果; c) 输出结果为单词的二元式序列(样式见样板输出1和2); d) 要求能发现下列词法错误和指出错误性质和位置: 非法字符,即不是SAMPLE字符集的符号; 字符常数缺右边的单引号(字符常数要求左、右边用单引号界定,不能跨行); 注释部分缺右边的界符*/(注释要求左右边分别用/
  3. 所属分类:Compiler program

    • 发布日期:2017-03-25
    • 文件大小:630345
    • 提供者:kaka
  1. cifafenxi

    0下载:
  2. 实现一个C语言子集的词法分析程序。 首先在关键字列表keywordtable中查询字符串p,若存在就将该字符串及对应的类号插入二元式列表eryuanshi;若没有,在符号表symtable中查询,如果symtable中不存在p就将p插入,这里要分p是标识符还是整数区别对待,设置不同的type值。-the word
  3. 所属分类:Compiler program

    • 发布日期:2017-04-07
    • 文件大小:940
    • 提供者:cjl
  1. CompileDesignTest

    0下载:
  2. 编译原理课程设计的语义分析程序,有文档,按照文档里面的语法规则可以得到四元式代码,vs2010编译通过,使用C语言编写-Compiler theory of curriculum design semantic analysis procedures, documentation, in accordance with the document inside the grammar rules can be four yuan-type code, compiled by vs2010, u
  3. 所属分类:Compiler program

    • 发布日期:2017-05-06
    • 文件大小:1157012
    • 提供者:王郝
  1. -2

    0下载:
  2. C++经典语法与应用,类的编写与应用,构造与析构函数,函数的重载,类的继承,函数覆盖,基类与派生类的构造函数、析构函数先后调用顺序,如何在派生类构造函数中向基类的构造函数传递参数,this成员变量,类型转换的内幕,虚拟函数与多态性,引用和指针的变量的区别与共同处。VC工程的编译原理与过程,将工程中不同的类拆分到不同的原文件中,每一个类由一个.h和.cpp文件共同完成,头文件重复定义问题的解决,培养了学员良好的编程习惯,也为以后分析MFC Appwizard生成的工程奠定了良好基础。-C++ cl
  3. 所属分类:Compiler program

    • 发布日期:2017-04-07
    • 文件大小:577807
    • 提供者:紫心湖
  1. Syntax-Analyzer

    0下载:
  2. Syntax Analyzer: this tool with nice GUI can analyze the simple C++ code for syntax errors! It will also tell you the line of syntax error! You could type the code or open a text file with code, and it is also possible to save a file with code.
  3. 所属分类:Compiler program

    • 发布日期:2017-05-17
    • 文件大小:4679630
    • 提供者:benjy
  1. lexical_analysis

    0下载:
  2. 编译原理,词法分析程序,C语言编写。输入英文字符串,可分析出各字符所属类型并以文本输出。-Compiler theory, lexical analyzer, the C language. Enter the English string, each character belongs to the type and text output can be analyzed.
  3. 所属分类:Compiler program

    • 发布日期:2017-05-04
    • 文件大小:1322086
    • 提供者:何大王
  1. BYYL

    0下载:
  2. 编译原理 实现标准C语言词法分析器 掌握程序设计语言词法分析的设计方法; 2.掌握DFA的设计与使用方法; 3.掌握正规式到有限自动机的构造方法; -Compiling principle realize standard C language lexical parsers Master program design language of lexical analysis design method 2. Master DFA design and method o
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:59941
    • 提供者:jerry1097
  1. Code

    0下载:
  2. 动态链接库程序的编写。静态库与动态库的区别,以及调用程序在链接静态库和动态库时的区别。如何利用工具查看动态链接库输出的函数,Depends工具的使用,C++编译器名字改编技术对动态链接库输出函数的影响,extern "C"的用法,利用模块定义文件来解决C++名字改编的问题。用typedef定义指向函数的指针类型,如何获得动态连接库里的函数的指针。-DLL program code. Static libraries and dynamic repository of differentiatio
  3. 所属分类:Compiler program

    • 发布日期:2017-04-06
    • 文件大小:173234
    • 提供者:田海龙
  1. siyuanshi

    0下载:
  2. 用C++实现编译器的转化四元式功能,程序简单易懂- the functions of the transformation of quaternion type with C++
  3. 所属分类:Compiler program

    • 发布日期:
    • 文件大小:1584
    • 提供者:丰文安
« 1 2»
搜珍网 www.dssz.com