搜索结果
找到约 884 项符合
HLP-P 的查询结果
matlab例程 JLAB is a set of Matlab functions I have written or co-written over the past fifteen years for the p
JLAB is a set of Matlab functions I have written or co-written over the past fifteen years for the purpose of analyzing data. It consists of four hundred m-files spanning thirty thousand lines of code. JLAB includes functions ranging in complexity from one-line aliases to high-level algorithms for c ...
文章/文档 C++实现的哈弗曼编码
C++实现的哈弗曼编码,并有流程图(1)I:初始化(Initialization)。从指定的英文文件中Sourcefile.txt读取数据,根据文件内容统计的字符的频度,建立哈夫曼树。
(2)E:编码(Encoding)。利用已经建好的哈夫曼树进行编码,并将每个字符的编码写入文件HuffCode.txt中保存。
(3)C:压缩(Compress)。根据HuffCode.txt中编 ...
matlab例程 % DYNMODES calculates ocean dynamic vertical modes % taking a column vector of Brunt-Vaisala values
% DYNMODES calculates ocean dynamic vertical modes
% taking a column vector of Brunt-Vaisala values (Nsq) at
% different pressures (p) and calculating some number of
% dynamic modes (nmodes).
% Note: The input pressures need not be uniformly spaced,
% and the deepest pressure is assumed to ...
通讯编程文档 Abstract-The effect of the companding process on QAM signals has been under investigation for the p
Abstract-The effect of the companding process on QAM signals
has been under investigation for the past several years. The
compander, included in the PCM telephone network to improve
voice performance, has an unusual affect on digital QAM data
signals which are transmitted over the same channel. The ...
数据结构 输入一段英文字符
输入一段英文字符,试为该文中的每个字符编制相应的哈夫曼码。
(1)I:初始化(Initialization)。对输入的一段英文中的每个字符统计其权值,建立哈夫曼树;
(2)E:编码(Encoding)。利用已建好的哈夫曼树,对每个字符进行编码。
(3)D:译码(Decoding)。利用已建好的每个编码,对输入的一个由0、1组成的序列进行译 ...
单片机开发 熟悉用单片机产生声音的方法 硬件要求:拨码开关S10的第3位置ON
熟悉用单片机产生声音的方法
硬件要求:拨码开关S10的第3位置ON,其他位置OFF
LIST P=16F877A,R=DEC
定义器件,默认为十进制
数据结构 /*快速排序采用分治算法
/*快速排序采用分治算法,将所需要排序的内容从文件读入放入数组a[p:r],按以下三个步骤进行排序
以a[p]为基准元素将数组分为三段,将大于基准元素的放到后面的单元,小的放到前面的单元,
再用递归对a[p:q-1],a[q+1:r]进行排序,最后合并
时间复杂度:最坏时间复杂度:O(n2)
平均时间复杂度:O(nlogn)
*/ ...
数据结构 对PL0原编译器进行了以下的扩充:1.增加以下保留字else(elsesym), for(forsym),to(tosym),downto(downtosym),return(returnsym),[
对PL0原编译器进行了以下的扩充:1.增加以下保留字else(elsesym), for(forsym),to(tosym),downto(downtosym),return(returnsym),[(lmparen),](rmparen)
2.增加了以下的运算符:+=(eplus),-=(eminus),++(dplus),--(dminus)
取址运算符&(radsym),指向运算符@(padsym)
3.修改单词:修改不等号#为<>
4.扩充语句:(1)增加了else ...