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

资源列表

« 1 2 ... .90 .91 .92 .93 .94 295.96 .97 .98 .99 .00 ... 785 »
  1. LR-fenxi

    0下载:
  2. LR分析器的实现代码,相信能对编译原理学习的人有所帮助,针对代码有详细的解释-LR parser code, I believe that the compiler can learn the principle of help, for detailed explanations on the code
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:25275
    • 提供者:lyf
  1. cifafenxi

    0下载:
  2. 词法分析器的简易代码加解释,对初学者有很好的帮助!分析详尽,算法精简!-Lexical analyzer code simple explanation for a very good help for beginners! Detailed analysis of the algorithm to streamline!
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:18370
    • 提供者:lyf
  1. kecengsheji

    0下载:
  2. 编译原理课程设计,做了一个:根据LR分析表构造LR分析器!对同学们做编译原理实验很有帮助-Principles of curriculum design compiler, made a: LR analysis table constructed in accordance with LR parser! For students to do experimental helpful Compilation Principle
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:95632
    • 提供者:lyf
  1. suanfuwenfa

    0下载:
  2. 算符文法分析器,代码简单易懂,有详尽的解释和说明,对你的学习有很好的帮助-Operator grammar parser, easy-to-read code, a detailed explanation and descr iption of your study and have a good help
  3. 所属分类:Compiler program

    • 发布日期:2017-04-06
    • 文件大小:10056
    • 提供者:lyf
  1. Lesson2Code

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

    • 发布日期:2017-04-08
    • 文件大小:19211
    • 提供者:yuehua8
  1. borghelp

    0下载:
  2. 反汇编工具Borg的源代码,静态反汇编可执行文件的工具Borg的源代码,很实用-Tools Borg disassemble the source code, static anti-compiled executable file tools Borg
  3. 所属分类:Compiler program

    • 发布日期:2017-04-06
    • 文件大小:21779
    • 提供者:NIM
  1. DllTest

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

    • 发布日期:2017-04-24
    • 文件大小:155875
    • 提供者:yuehua8
  1. bianyiyuanli

    0下载:
  2. 编译原理技术与工具(中文版),龙书啊-Principles of compiler technology and tools (Chinese Version), Long book ah
  3. 所属分类:Compiler program

    • 发布日期:2017-06-18
    • 文件大小:27808738
    • 提供者:周蜚语
  1. cp1

    0下载:
  2. 此文档英文原文摘自www.cppreference.com 以下C-Free的支持者,为文档的翻译做出贡献,特此感谢: Dreamby , sirius , Vic Zhang , Lauren.Jc , Rexzhou , power , littlestone   -Excerpt from the original English text of this document www.cppreference.com the following C-Fr
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:40124
    • 提供者:大肠杆菌
  1. pl0c++

    0下载:
  2. c++编写的pl0编译器,用于初学者学习应用-c++ prepared pl0 compiler for beginners to learn the application of
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:19880
    • 提供者:cc
  1. LL(1)Analysis

    0下载:
  2. 大学时的编译大作业,是对LL(1)语法的分析过程,会产生first集,follow集和预测分析表!-University at the time of compiling large operations, is a LL (1) syntax analysis process, will have first set, follow sets and predictive analysis table!
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:6521
    • 提供者:liangye
  1. ll(1)YUFAPANDUAN

    1下载:
  2. 学编译原理时写的一个语法分析程序 分类:C/C++技术交流 一.[目的要求] ① 对输入文法,由程序自动构造FIRST FOLLOW集 ② 对输入文法,由程序自动生成它的LL(1)分析表; ③ 对于给定的输入串,应能判断识别该串是否为给定文法的句型。 二.[题目分析] 该程序可分为如下几步: (1)读入文法 (2)判断正误 (3)若无误,判断是否为LL(1)文法 (4)若是,构造分析表; (5)由总控算法判断输入符
  3. 所属分类:Compiler program

    • 发布日期:2017-03-23
    • 文件大小:4780
    • 提供者:liangye
« 1 2 ... .90 .91 .92 .93 .94 295.96 .97 .98 .99 .00 ... 785 »
搜珍网 www.dssz.com