CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 SCSI/ASPI 搜索资源 - by

搜索资源列表

  1. up_VC_Prolog

    0下载:
  2. VC和prolog联合开发的prolog的编译器.是我的毕业设计,河海大学2006届毕业生的优秀毕业设计.以下是论文的一部分: 第三章 VC++与PROLOG的接口 一.接口方案及准备工作 在这里,我所采用的接口方案是直接调用库函数.PROLOG系列语言中,有一种叫Amzi PROLOG的,提供了较完善的库函数接口.在我的毕业设计中,我所采用的是Amzi PROLOG 5.0版本所提供的库函数接口,所引用的文件为Amzi.h,amzi.dll,amzi.lib.这些文件可以通过下载
  3. 所属分类:SCSI/ASPI

    • 发布日期:2008-10-13
    • 文件大小:114041
    • 提供者:寒冬
  1. qrcode-sourse

    0下载:
  2. QR码的生成与译码。 讲解QR 码的编写,定义。 通过Visual C++编写,实现QR码的生成与译码。-QR code generation and decoding. QR codes to explain the preparation, definition. Written by Visual C++ to realize the generation and decoding QR codes.
  3. 所属分类:Compiler program

    • 发布日期:2017-05-16
    • 文件大小:4197533
    • 提供者:myeveryheart
  1. DFA

    0下载:
  2. 输入一个正则表达式,输出相应的NFA图,NFA转换为DFA(得到的DFA图要求用画图方法完成并要求先产生子集构造表出来再画DFA图),DFA最小化(也要求用画图方法完成) -Enter a regular expression, the output corresponding NFA map, NFA is converted to DFA (the DFA plans to be asked to use drawing methods and called for the first
  3. 所属分类:Compiler program

    • 发布日期:2017-03-22
    • 文件大小:14112
    • 提供者:liyingan
  1. 16b20b_Encoder

    0下载:
  2. VHDL实现的16B/20B编码器。由两个8B/10B编码器组成。级联实现。-VHDL implementation 16B/20B encoder. Composed by two 8B/10B encoder. Cascade realization.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:78533
    • 提供者:kvein
  1. minic

    0下载:
  2. 输入简单的c语言程序,再通过编译器进行编译,可以得到编译的结果。与c语言的功能相近只是范围较小。还可以生成语法分析树,来看中间是怎么进行编译的。-Enter a simple c language program, and then compiled by the compiler, the results can be compiled. And c function of language is similar to a smaller range. Parse tree can also
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:9616
    • 提供者:小缪子
  1. yufafenxi(LR)

    1下载:
  2. LR方法 编写语法分析程序,实现对算数表达式的语法分析。要求所分析算数表达式由如下的文法产生。 E->E+T|E-T|T T->T*F|T/F|F F->id|(E)|num 实验要求:在对输入表达式进行分析的过程中,输出所采用的产生式。 -LR parser written methods to achieve parsing of arithmetic expressions. Requirements of arithmetic
  3. 所属分类:SCSI/ASPI

    • 发布日期:2012-12-20
    • 文件大小:4108
    • 提供者:lzydwd
  1. Compiler

    0下载:
  2. c0文法编译器,可生成四元式完成代码优化,再生成汇编语言,由汇编程序解释执行。-c0 grammar compiler can generate code optimized quad-style completion and then generate assembly language, interpreted by the assembler.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:519833
    • 提供者:chenbiao
  1. typeof

    0下载:
  2. typeof,编译时获取表达式类型运算符,是gcc编译器的一个扩展(intel编译器 也支持). 笔者最近作一个项目时需要用比较hack的手段把第三方的dll(无lib但有头文件)里面的外部函数以函数指针的方式提取出来给其他模块作全局变量用,500多个函数呀,声明函数指针可不是个轻松事,类型名字至少排满一行,写了50多个就受不了了. 找了boost的typeof,把里面的代码大幅度简化,提炼,去掉一些依赖.请使用TYPEOF宏,无任何运行时开销。 本版本利用了vc6的1个bug(子类
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:1101
    • 提供者:朱元
  1. longshu

    0下载:
  2. 编译原理龙书第三版高校配套四次实验源代码 一二三四 非常实用,完全可以编译通过-Compiler theory dragon book third edition of the colleges and universities supporting four experimental source code of one thousand two hundred thirty-four very practical, can be compiled by
  3. 所属分类:Compiler program

    • 发布日期:2017-04-09
    • 文件大小:1648666
    • 提供者:rexgenius
  1. 20054674552

    0下载:
  2. 递归子程序法:对应每个非终结符语法单元编一个独立的处理过程(或子程序)。语法分析从读入第一个单词开始,由非终结符<程序>(即开始符)出发,沿语法描述图箭头所指出的方向进行分析。当-Recursive Subroutine law: at the end of the corresponding syntax for each non-unit provision of an independent process (or subprogram). Parsing from the f
  3. 所属分类:Compiler program

    • 发布日期:2017-04-06
    • 文件大小:29038
    • 提供者:xieli123
  1. 2

    0下载:
  2. 设计并实现C语言的语分析程序,实现对算术表达式的语法分析。要求所分析算术表达式由如下的文法G产生: EE+T|E-T|T TT*F|T/F|F Fid|(E)|num 实验要求:在对输入表示进行分析的过程中,输出所采用的产生式。-Design and implement C language, language analysis program to realize the arithmetic expression parsing. Requirements of a
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:1051
    • 提供者:CC
  1. cmm-lex

    0下载:
  2. 参照清华大学《编译原理》写的cmm语言词法分析程序-Reference to Tsinghua University, Compiler Construction Principles written by cmm language lexical analysis program
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:26375
    • 提供者:叶世权
  1. DFIGwindfarm500

    1下载:
  2. 500MW风电场仿真,风机采用双馈机,控制器部分由CROBAR电路-500MW wind farm simulation fan doubly-fed machine the controller part by CROBAR circuit
  3. 所属分类:Compiler program

    • 发布日期:2017-11-10
    • 文件大小:24987
    • 提供者:hebangle
  1. classweb

    0下载:
  2. 各位朋友可以把自己的以前的班级做一个网站,用ASP编写的一个数据库-My friends can be our own before the class to do a website with a database prepared by ASP
  3. 所属分类:SCSI-ASPI

    • 发布日期:2017-03-29
    • 文件大小:586119
    • 提供者:王翰
  1. SCSI_programming_guide

    0下载:
  2. 此为SCSI程序编写书籍,藉由了解此书籍可以获得SCSI程式编写能力以及如何透过SCSI编写程式.-This is a SCSI programming books, by understanding this book can get SCSI programming capabilities, and how the SCSI programming.
  3. 所属分类:SCSI-ASPI

    • 发布日期:2017-05-22
    • 文件大小:6764490
    • 提供者:蔡智原
  1. e

    0下载:
  2. 本站以C语言和Java语言、嵌入式开发、算法实现为主,源码数量达几十万个,有200多个分类,很多都是本站会员的私家珍藏,互联网上其他地方是找不到的-Powered by C language and Java language, embedded development, algorithm-based, the number of up to hundreds of thousands of source code, there are more than 200 categories, ma
  3. 所属分类:SCSI-ASPI

    • 发布日期:2017-04-13
    • 文件大小:3307
    • 提供者:陈彦林
  1. Parser

    0下载:
  2. 编制一个递归下降分析程序,实现对词法分析程序所提供的单词序列的语法检查和结构分析-The preparation of a recursive descent parser, lexical analyzer to achieve the sequence of words provided by the syntax check and structural analysis
  3. 所属分类:SCSI/ASPI

    • 发布日期:2017-04-23
    • 文件大小:10985
    • 提供者:贾明军
  1. New-Text-Document-(2)

    0下载:
  2. TREAP C== THE GIOO BY SI=UBMITION OR FUCKINF THAT
  3. 所属分类:SCSI-ASPI

    • 发布日期:2017-03-26
    • 文件大小:725
    • 提供者:saria
  1. ckeditor_3.6.5

    0下载:
  2. CKEditor是新一代的FCKeditor,是一个重新开发的版本。CKEditor是全球最优秀的网页在线文字编辑器之一,因其惊人的性能与可扩展性而广泛的被运用于各大网站。 CKEditor是Fckeditor html编辑器了一个升级版本,用过fckeditor的站长都知道,由于其打开速度的不理想把fckeditor用于网站做为在线编辑器并不是明智的选择,ckeditor正好弥补了这一缺陷,ckeditor是由Frederico Knabben.针对网络而开发的在线编辑器。它提供了令人吃惊
  3. 所属分类:Compiler program

    • 发布日期:2017-11-18
    • 文件大小:2663912
    • 提供者:施彬彬
  1. DelphiDecompiler-Fix-by-Yeuonline1506

    0下载:
  2. delphi compiler by download
  3. 所属分类:Compiler program

    • 发布日期:2017-11-25
    • 文件大小:2080065
    • 提供者:fredi
« 12 3 4 5 6 7 8 9 10 ... 13 »
搜珍网 www.dssz.com