搜索资源列表
the-number-of-disk-
- 此源代码是获取硬盘序列号,分别获取C盘和D盘。-the number of disk
[NFA+TO+DFA]
- [NFA+TO+DFA] 很好很强大的,全部都有了,下下来就行了-[NFA+ TO+ DFA] very very powerful, all have been, the next down on the list
mmc3r10g
- 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
Commande_optimale
- commande optimale d un robot manipulateur
CPP
- 输入若干个百分制成绩,输出对应的五分制成绩,输入结束后再分别输出这五个分段的人数。五分制成绩用字母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
dragon-front-source
- 《编译原理技术和工具》(龙书)附带的简易编译器前端代码-A simple compiler front-end code with 《Compilers: Principles,Techniques,and Tools》(Alfred V.Aho,Ravi Sethi,Jeffrey D.Ullman)
rs2daima
- 用乘法电路,编码后的码字为非系统码,若采用除法电路,则可得到系统码。 RS码实际上是一种多进制的BCH码,RS(n,k)码可以由m、n和k三个参数来表示,并且码字长度:n=2m-1个码元,信息段:k个码元,监督位:2t=n-k,最小码距:d=2t+1个码元。 -failed to translate
triangular
- 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)
HuffmanTree
- 该系统应具有以下功能: (1) I:初始化(Initialization)。从终端读入字符集大小n,以及n个字符和n个权值,建立哈夫曼树,并将它存于文件hfmTree中。 (2) E:编码(Encoding)。利用已建好的哈夫曼树(如不在内存,则从文件hfmTree中读入),对文件ToBeTran中的正文进行编码,然后将结果存入文件CodeFile中。 (3) D:译码(Decoding)。利用已建好的哈夫曼树将文件CodeFile中的代码进行译码,结果存入文件TextFile中。
51CTO
- 酒店管理系统只要是管理会员和计费等等,预定房间,-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
ANNTestCode
- This is sample to implement K-d tree search which is fast searching
MLIsimple
- Simple moudulation à largeurs d impulsions
qualite
- programme lineaire pour obtenir une qualité d un programme lineaire
AP61
- download d-link dir-300 A1
DIR-300A1_FW105b09
- download d-link dir-300 A1
neww
- codage prédictif in théorie d’information
DA
- dsp 28335的A/D转换的一些功能代码。-dsp 28335 A/D convertdsp 28335 A/D convertdsp 28335 A/D convertdsp 28335 A/D convert
d_ff
- 基于verilog的上升沿D触发器的行为模型和其tesbench-Verilog behavioral model based on the rising edge of D flip-flop and its tesbench
lab1-GPIO_LED
- D S P 28335 G P I O设定为LED, 包括了定时器的配置,和中断的设置-DEP28335 is set as to light up the LED.
Design-of-C_minus-lexical-analyzer
- 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|..|