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

搜索资源列表

  1. mmc3r10g

    0下载:
  2. SCSI Multimedia Commands 鈥?3 (MMC-3) T10/1363-D 5.16 READ CAPACITY Command The READ CAPACITY command (Table 144) provides a means for the Initiator to request information regarding the capacity of the Logical Unit. This command shall not repo
  3. 所属分类:SCSI-ASPI

    • 发布日期:2017-04-09
    • 文件大小:1736521
    • 提供者:zyx
  1. CPP

    0下载:
  2. 输入若干个百分制成绩,输出对应的五分制成绩,输入结束后再分别输出这五个分段的人数。五分制成绩用字母A、B、C、D和E分别表示百分制成绩的100~90、89~80、79~70、69~60、59~0-Input several centesimal system performance, the output of the five grade marking system corresponding to the input end result, after the five output re
  3. 所属分类:Compiler program

    • 发布日期:2017-11-17
    • 文件大小:2894
    • 提供者:zhaochang
  1. dragon-front-source

    0下载:
  2. 《编译原理技术和工具》(龙书)附带的简易编译器前端代码-A simple compiler front-end code with 《Compilers: Principles,Techniques,and Tools》(Alfred V.Aho,Ravi Sethi,Jeffrey D.Ullman)
  3. 所属分类:Compiler program

    • 发布日期:2017-11-15
    • 文件大小:35128
    • 提供者:SnakeHunt2012
  1. triangular

    0下载:
  2. making triangular number with c++ using integer #include<stdio.h> int triangular(int a) main() { int x printf("menghitung triangular bilangan\n") printf("masukkan bilangan x= ") scanf(" d",&x) triangular(x)
  3. 所属分类:Compiler program

    • 发布日期:2017-11-17
    • 文件大小:960038
    • 提供者:thongthong
  1. HuffmanTree

    0下载:
  2. 该系统应具有以下功能: (1) I:初始化(Initialization)。从终端读入字符集大小n,以及n个字符和n个权值,建立哈夫曼树,并将它存于文件hfmTree中。 (2) E:编码(Encoding)。利用已建好的哈夫曼树(如不在内存,则从文件hfmTree中读入),对文件ToBeTran中的正文进行编码,然后将结果存入文件CodeFile中。 (3) D:译码(Decoding)。利用已建好的哈夫曼树将文件CodeFile中的代码进行译码,结果存入文件TextFile中。
  3. 所属分类:Compiler program

    • 发布日期:2017-11-09
    • 文件大小:6523454
    • 提供者:Peter
  1. 51CTO

    0下载:
  2. 酒店管理系统只要是管理会员和计费等等,预定房间,-java fcom dacaddfd dfoatgdf fdf djot df dat aldfsd gfjdogflafrjdfsdat daf tldat t df sadt d feqreaf dag adgf dg gadf jgdal gsfo ad g ldag a gadf as d
  3. 所属分类:Compiler program

    • 发布日期:2017-06-02
    • 文件大小:15256818
    • 提供者:天提
  1. DA

    0下载:
  2. dsp 28335的A/D转换的一些功能代码。-dsp 28335 A/D convertdsp 28335 A/D convertdsp 28335 A/D convertdsp 28335 A/D convert
  3. 所属分类:Compiler program

    • 发布日期:2017-04-10
    • 文件大小:685
    • 提供者:jock
  1. Design-of-C_minus-lexical-analyzer

    0下载:
  2. 1、该个词法分析器要求至少能够识别以下几类单词: a.关键字:else if int return void while共6个,所有的关键字都是保留字,并且必须是小写; b.标识符:识别与C语言词法规定相一致的标识符,通过下列正则表达式定义:ID = letter (letter | digit)*; c.常数:NUM = digit digit*(.digit digit* |ε)(e(+ | - |ε) digit digit* |ε),letter = a|..|z|A|..|
  3. 所属分类:Compiler program

    • 发布日期:2017-04-28
    • 文件大小:32418
    • 提供者:陈景
  1. prac09

    0下载:
  2. Beat Tracking by Dynamic Programming This page illustrates the use of the beat_* functions to implement a simple music audio beat tracker based on dynamic programming, as described in: D. Ellis Beat Tracking by Dynamic Programming J. New Music R
  3. 所属分类:Compiler program

  1. fs_sup_fcbf

    0下载:
  2. Using Weka s feature selection algorithm X, the features on current trunk, each colum is a feature vector on all instances, and each row is a part of the instance Y, the label of instances, in single column form: 1 2 3 4 5 ... a.E = w
  3. 所属分类:Compiler program

    • 发布日期:2017-04-11
    • 文件大小:812
    • 提供者:alaa
  1. CudaPad

    0下载:
  2. CudaPAD is a PTX/SASS viewer for NVIDIA Cuda kernels -CudaPAD is a PTX/SASS viewer for NVIDIA Cuda kernels Introduction CudaPAD is software that aids in the optimizing and understanding of NVidia’s Cuda kernels by displaying an on-the-fly vi
  3. 所属分类:Compiler program

    • 发布日期:2017-05-07
    • 文件大小:1528153
    • 提供者:MahdiAttar
  1. LexicalAnalysis

    1下载:
  2. 1、根据以下的正规式,编制正规文法,画出状态图; 标识符 <字母>(<字母>|<数字字符>)* 十进制整数 0 | ((1|2|3|4|5|6|7|8|9)(0|1|2|3|4|5|6|7|8|9)*) 八进制整数 0(1|2|3|4|5|6|7)(0|1|2|3|4|5|6|7)* 十六进制整数 0x(0|1|2|3|4|5|6|7|8|9|a|b|c|d|e|f)(0|1|2|3|4|5|6|7|8|9|a|b|c|d|e
  3. 所属分类:Compiler program

    • 发布日期:2017-04-13
    • 文件大小:1700
    • 提供者:忆昔
  1. DM1-Queue

    0下载:
  2. D/M/1 Simulation to measure the network performance in order to build a better network designe
  3. 所属分类:Compiler program

    • 发布日期:2017-05-01
    • 文件大小:385551
    • 提供者:Paramveer
  1. MD1-Queue

    0下载:
  2. M/D/1 Simulation to measure the network performance in order to build a better network designe
  3. 所属分类:Compiler program

    • 发布日期:2017-04-30
    • 文件大小:385361
    • 提供者:Paramveer
  1. MD1K-Queue

    0下载:
  2. M/D/1/K Simulation to measure the network performance in order to build a better network designe
  3. 所属分类:Compiler program

    • 发布日期:2017-05-01
    • 文件大小:385378
    • 提供者:Paramveer
  1. xmake-2.0.5.tar

    1下载:
  2. 一个基于Lua的轻量级自动构建工具 简单的工程描述 target( console ) set_kind( binary ) add_files( src .c ) 构建工程 $ xmake 运行目标 $ xmake run console 调试程序 $ xmake run -d console 支持特性 Tasks Macros Actions Options Plugins Temp
  3. 所属分类:Compiler program

    • 发布日期:2017-05-13
    • 文件大小:2666090
    • 提供者:王润清
  1. json

    0下载:
  2. a、 完成json 基本结构(键值对、对象、数组、字符串)的解析;(10 分) b、 完成对true、false、null、整数的解析;(5 分) c、 完成浮点数的解析;(5 分) d、 完成科学计数法表示的数的解析;(5 分); e、 完成json 文本的格式化。添加一个命令行参数-pretty,对于文件*.json,如果解析成功, 那么将格式化后的json 输出到另一个文件*.pretty.json 中。(5 分) test 目录下的e 目录下,有一个乱序的country.js
  3. 所属分类:编译器/解释器

    • 发布日期:2017-12-29
    • 文件大小:1398784
    • 提供者:偏世陈风
搜珍网 www.dssz.com