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

搜索资源列表

  1. cxxtools-1.4.8.tar

    0下载:
  2. Cxxtools 源码, Cxxtools把大部分linux C 库函数封装成C++类。封装方法巧妙高效,可以用于学习和直接使用。-Cxxtools is a collection of general-purpose C++ classes. It includes classes for: * argument parsing * logging * wrappers for threading (pthreads) * network
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:451807
    • 提供者:leo
  1. XMLparsertechnologyresearchandimplementation

    0下载:
  2. 自动建立xml文档解析器,并对制定文档进行解析!解析的同时实现XML文档有效性验证!-Automatically create a xml document parser, and the development of parsing the document! While parsing XML documents to achieve validation!
  3. 所属分类:Compiler program

    • 发布日期:2017-05-08
    • 文件大小:1635090
    • 提供者:小生
  1. Principles_of_Compilers

    0下载:
  2. 深入浅出地解析程序设计、软件工程等编程理论知识。-Layman' s language parser design, software engineering, programming theory.
  3. 所属分类:Document

    • 发布日期:2017-04-05
    • 文件大小:367133
    • 提供者:duckjenny
  1. programming

    0下载:
  2. 编译原理课程设计,内含词法分析器和语法分析器。-Principles of curriculum design, compilation, containing the lexical analyzer and parser.
  3. 所属分类:Other systems

    • 发布日期:2017-04-07
    • 文件大小:3332
    • 提供者:紫陌
  1. yum1222

    0下载:
  2. RHEL5 YUM不能使用的解决方案,对RHEL5不是正版的朋友该方法有用。-RHEL5 YUM can not use the solution, not genuine friends on RHEL5 usefulness of the method.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-30
    • 文件大小:4823
    • 提供者:zhizhi
  1. yufafenxiqi

    0下载:
  2. 编译器的语法分析器的源代码可以运行保证没有错误-Compiler parser source code can be run to ensure no errors
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:4350
    • 提供者:张介玉
  1. libupnp-1.3.1.tar

    0下载:
  2. The Linux SDK for UPnP Devices is an SDK for development of UPnP device and control point applications for Linux. It consists of the core UPnP protocols along with a UPnP-specific eXtensible Markup Language (XML) parser supporting the Docume
  3. 所属分类:Streaming_Mpeg4

    • 发布日期:2017-03-26
    • 文件大小:717756
    • 提供者:peng
  1. openvxi-3.4

    0下载:
  2. OpenVXI 3.4, voiceXML解析器-OpenVXI 3.4, voiceXML parser
  3. 所属分类:Other systems

    • 发布日期:2017-04-09
    • 文件大小:1710643
    • 提供者:
  1. __xmlParser

    0下载:
  2. XML解析类,轻巧、简单、易用(内含源码、示例程序以及文档说明)-This is a basic XML parser written in ANSI C++ for portability. It works by using recursion and a node tree for breaking down the elements of an XML document.
  3. 所属分类:File Operate

    • 发布日期:2017-05-08
    • 文件大小:1558561
    • 提供者:wangzhenming
  1. RecursiveDescentParser

    0下载:
  2. 一种自顶向下的语法分析方法的思想,根据文法的产生式规则绘制相应的转换图,并能对之进行简化,继而构造出相应的递归下降分析器。-A kind of top-down method of syntax analysis of the idea, according to the grammar production rules mapping the corresponding conversion map and the simplification can then construct the
  3. 所属分类:Compiler program

    • 发布日期:2017-04-16
    • 文件大小:72503
    • 提供者:zhangxueli
  1. PL0-classic

    0下载:
  2. 可能是流传最广、最为经典的样板作品,Pascal语言之父、图灵奖获得者Niklaus Wirth在其名著Algorithms + Data Structures = Programs第5章给出的一个递归下降预测分析器实现。毫无疑问,它是用Pascal语言编写的。该编译器生成的目标语言是p-code,一台p- code虚拟机有3个寄存器(程序计数器、基本寄存器和栈顶寄存器)和8条指令(每条指令有多种形式)。-May be the most widely accepted model for the
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:4563
    • 提供者:superchangme
  1. Sharp

    0下载:
  2. 美国UCI(University of California, Irvine)学生Michael Bebenita在Microsoft .NET平台上基于C#语言和Gold Parser生成工具构造的一个从玩具语言Sharp到MSIL的编译器。Sharp语言支持变量声明和函数调用。-U.S. UCI (University of California, Irvine) student Michael Bebenita in the Microsoft. NET platform, based o
  3. 所属分类:CSharp

    • 发布日期:2017-04-06
    • 文件大小:758033
    • 提供者:superchangme
  1. pdbexp_v1.11.223_src

    0下载:
  2. PDB Explorer 是一个能够查看微软 pdb 文件(Program DataBase ,程序数据库)的工具,它能够将 pdb 文件中的 struct 、union 及 enum 类型的定义以 C/C++ 的语法显示出来,特别适合 Windows 底层研究人员及 DDK 程序员使用。 作者:李马-PDB Explorer is a tool that can check the Program DataBase of MS
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-28
    • 文件大小:45700
    • 提供者:王小鱼
  1. LRAnalysis

    0下载:
  2. (1)E -> E+T (2)E -> T (3)T -> T*E (4)T -> F (5)F -> (E) (6)F -> i 模拟以上文法的LR分析过程。对用户任意输入的字符串,能够输出LR分析器的工作过程。 根据以上文法,生成LR分析表,使用VC语言实现LR分析器。Main函数接受用户键盘输入的字符串,通过调用LR函数输出LR分析的过程。-(1) E-> E+ T (2) E-> T (3) T-> T* E (4)
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:151478
    • 提供者:罗丹
  1. parsesrc

    0下载:
  2. TExprCalc is a Delphi component written around the original Parser.dll. The original parser has been modified and the Symbol table changed to a TList. This made it possible to create the parser for 16 and 32 bit. It is no longer a DLL but an
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:30520
    • 提供者:Zhou Qing
  1. afparser

    0下载:
  2. TParser parses and evaluates mathematical expressions specified at runtime. Its performance is remarkable - only 40-80 slower than similar compiled expression - and it is by far the fastest parser on the freeware market.- TParser parses and
  3. 所属分类:Compiler program

    • 发布日期:2017-04-06
    • 文件大小:21747
    • 提供者:Zhou Qing
  1. parse_tags

    0下载:
  2. SuperFast Parser for HTML tags
  3. 所属分类:software engineering

    • 发布日期:2017-04-07
    • 文件大小:1991
    • 提供者:kmicic
  1. cifafenxi

    0下载:
  2. 用C语言描述的编译原理的此法分析器 是比较简单的-Compiled with the C language to describe the principle of this method is relatively simple parser
  3. 所属分类:Other systems

    • 发布日期:2017-04-07
    • 文件大小:1847
    • 提供者:skyshy
  1. cpl

    0下载:
  2. parser for the shakesphere programming language
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:2452
    • 提供者:ASHIMA
  1. Parsing

    0下载:
  2. 基于概率的上下文无关文法的句法分析器,在词法分析的基础上,分析一些简单语句。-Probability-based context-free grammar parser, the lexical analysis, based on analysis of some simple statements.
  3. 所属分类:MultiLanguage

    • 发布日期:2017-04-02
    • 文件大小:21414
    • 提供者:evaplum
« 1 2 ... 42 43 44 45 46 4748 49 50 »
搜珍网 www.dssz.com