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

搜索资源列表

  1. 3.zip

    0下载:
  2. 本工具提供一个词法分析器和语法分析器的集成开发环境,同时提供与其他C程序编译器连接的接口,使用相当方便
  3. 所属分类:编译器/词法分析

    • 发布日期:
    • 文件大小:10417
    • 提供者:
  1. whale-0.3.2-src.zip

    0下载:
  2. Complete support for EBNF notation; Object-oriented parser design; C++ output; Deterministic bottom-up "shift-reduce" parsing; SLR(1), LALR(1) and LR(1) table construction methods; Automatic parse tree creation; Possibility to output pars
  3. 所属分类:编译器/词法分析

    • 发布日期:
    • 文件大小:220189
    • 提供者:
  1. antlr-3.0b5.tar

    0下载:
  2. ANTLR(ANother Tool for Language Recognition)它是这样的一种工具,它可以接受词文法语言描述,并能产生识别这些语言的语句的程序。作为翻译程序的一部分,你可以使用简单的操作符和动作来参数化你的文法,使之告诉ANTLR怎样去创建抽象语法树(AST)和怎样产生输出。ANTLR知道怎样去生成识别程序,语言包括Java,C++,C#. -distributions (ANother Tool for Language Recognit ion) it is a to
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:2650675
    • 提供者:guid
  1. 4th-3.3d-for-unix

    0下载:
  2. 4tH compiler是一个稍有不同的Forth 编译器,不像标准Forth 引擎所提供的常规编译器。4tH 是一个非常小的编译器,它可以生成字节码,嵌入式C字节码,单独的可执行文件,但是它也可以作为一个脚本语言-4tH compiler is a slightly different Fortran compiler, Unlike standard Forth engine provided by conventional compilers. 4tH is a very small co
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:292336
    • 提供者:zhouwei
  1. EiC_4.3.3.tar

    0下载:
  2. 这是又一个C语言解释器, 我们可以方便地扩展其功能, 并将其用于我们的工作中-This also a C language interpreter, we can easily expand its functions, and used in our work
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:623300
    • 提供者:hjz67
  1. Scan1.3

    0下载:
  2. 一个c-语言的词法分析器,学编译原理时做的。
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:10027
    • 提供者:mzy
  1. lua-5.1.3.tar

    0下载:
  2. 动态lua语言源代码,学学这个代码对提供C语言的能力还是挺好的。
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:215817
    • 提供者:wangjinquan
  1. flex++-2.3.8-7.tar.Z

    0下载:
  2. 生成C++的词法/语法分析的Flex语法分析器 ,Flex syntactic and phrase parser which can produce C++ code
  3. 所属分类:Compiler program

    • 发布日期:2017-11-08
    • 文件大小:341783
    • 提供者:
  1. 词法分析3

    3下载:
  2. 一个很不错的可视化词法分析器 用C++写的,是编译老师布置的作业-a very good visual lexical analyzer written in C, compile teachers layout operations
  3. 所属分类:编译器/词法分析

    • 发布日期:2012-11-04
    • 文件大小:54537
    • 提供者:楚楚
  1. Python-3.1.3源码

    0下载:
  2. Python(KK 英语发音:/'paɪθɑn/, DJ 英语发音:/ˈpaiθən/)是一种面向对象、直译式计算机程序设计语言,由Guido van Rossum于1989年底发明,第一个公开发行版发行于1991年。Python语法简捷而清晰,具有丰富和强大的类库。它常被昵称为胶水语言,它能够很轻松的把用其他语言制作的各种模块(尤其是C/C++)轻松地联结在一起。常见的一种应用情形是,使用python快速生成程序的原型(有时甚至是程序的最终界面),然后对其中有特别要求的部分,用更合适的语言改写
  3. 所属分类:编译器/词法分析

    • 发布日期:2012-11-06
    • 文件大小:9875464
    • 提供者:wywd@km169.net
  1. whale-0.3.2-src

    0下载:
  2. Complete support for EBNF notation; Object-oriented parser design; C++ output; Deterministic bottom-up "shift-reduce" parsing; SLR(1), LALR(1) and LR(1) table construction methods; Automatic parse tree creation; Possibility to output parse tree in XM
  3. 所属分类:Compiler program

    • 发布日期:2017-11-09
    • 文件大小:220502
    • 提供者:none
  1. ll(1)YUFAPANDUAN

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

    • 发布日期:2017-03-22
    • 文件大小:4780
    • 提供者:liangye
  1. P73-3

    0下载:
  2. noname00.cpp 是一个C语言的程序,请编译后运行。是取最大值程序-noname00.cpp is a C language program, compiled to run. Is the maximum check procedures
  3. 所属分类:Compiler program

    • 发布日期:2017-05-24
    • 文件大小:3391724
    • 提供者:Alex
  1. C

    1下载:
  2. C#算术表达式求值我是的算法核心是逆波兰式.还有就是w3eval这个算术表达式求值算法很不错.但有一种表达式它会报错.我想这是一个BUG:w3eavl不能计算"-(3+5)"的值.或者类似的计算式.-C# Arithmetic expressions evaluate my algorithm is the core of Reverse Polish-style. W3eval there is the arithmetic expression evaluation algorithm is
  3. 所属分类:Compiler program

    • 发布日期:2017-04-14
    • 文件大小:6728
    • 提供者:箱子
  1. finc-0.3.3.tar

    0下载:
  2. 国内人写的C编译器源代码,代码设计质量比较高,对学习编译原理较有用-Written by domestic C compiler source code, code design quality is relatively high, the principle of learning more useful to compile
  3. 所属分类:Compiler program

    • 发布日期:2017-04-25
    • 文件大小:288829
    • 提供者:吴参林
  1. Compiler---Thesisandcode

    1下载:
  2. 参照龙书编写的编译器,包括词法分析器,语法分析器,和生成三地址码的中间代码生成器。文件中包含代码和三篇论文。-Reference book written long compilers, including lexical analyzer, parser, and generate three address code between the code generator. File contains code and thesis 3.
  3. 所属分类:Compiler program

    • 发布日期:2017-05-06
    • 文件大小:1488964
    • 提供者:Wang Jia
  1. WordsAndGrammarAnalysis

    0下载:
  2. 6个不同的词法语法分析程序源代码,或者说通用c的编译器源码,3个c++控制台程序,3个mfc应用程序,-Six different lexical parsing source code, or common-source compiler c, 3 c++ console process, three mfc application, huh, huh
  3. 所属分类:Compiler program

    • 发布日期:2017-04-25
    • 文件大小:477661
    • 提供者:yzp
  1. nesc-1.3.0.tar

    0下载:
  2. 一个在无线传感器网络的编译器,编译necS 生成可执行文件,还可以把necS翻译成c语言-this is a compiler for necS
  3. 所属分类:Compiler program

    • 发布日期:2017-05-11
    • 文件大小:2635053
    • 提供者:焦志文
  1. omniORB-4.0.7.tar

    1下载:
  2. 编译工具,主要用于IDL编译为C++,是CORBA中间件产品-Compiler tools, mainly used for IDL compiler for C++, is the CORBA middleware
  3. 所属分类:Compiler program

    • 发布日期:2014-10-07
    • 文件大小:2784040
    • 提供者:muzi
  1. cpptcl-1.1.3

    0下载:
  2. C++/Tcl A C++ library for interoperability between C++ and Tcl Welcome to the C++/Tcl library! This library was written for C++ and Tcl programmers. It was inspired by the Boost.Python library and was deliberately designed to provi
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:50597
    • 提供者:Archie
« 12 3 4 5 »
搜珍网 www.dssz.com