搜索资源列表
phpZip
- PHP空间上传打包下载工具.如果你的FTP服务器不是很好的话`你会用的着的`上传很快的-PHP Upload packing space to download tools. If your FTP server is not very good words you would use to upload the soon
程序内存驻留程序(TSR)8
- 在C语言中,可以用keep ( )函数将程序驻留内存。这个函数有两个参数:status和size。size为驻留内存长度,可以用size=_SS+_SP/16-_psp得到,当然这也是一种估算的方法,并不是精确值。函数执行完以后,出口状态信息保存在status中。比如,对于上面的例子,将“geninterrupt (0x60) ”改写成“keep(0,_SS+_SP/16-_psp) ”后再执行程序,这一段程序就被驻留,此后在其它的任何软件或程序设计中,只要用到了60H号中断,就会在屏幕上显示“
chf
- 递归的字符串逆序,将带有空格的一行字符串按照单词的顺序逆序排列.例如:this is a string. 转化为string a is this.-recursive string reversal, with his string of blanks in accordance with the order of words printed in reverse chronological order. For example : this is a string. into a string
2007090918331710003
- 很麻烦的源码上传,郁闷,什么时候能改变一下,为什么要20个字啊-From a source very troublesome, depressing, when you change, why should the 20 words ah
hafumanbianmayumaqi
- 哈夫曼编码译码器,能在文章中查找和计算出字母的位置和字数。-Huffman decoder can find in the article and letters to calculate the location and number of words.
HuffmanCode
- 哈夫曼编码是可变字长编码(VLC)的一种。 Huffman于1952年提出一种编码方法,该方法完全依据字符出现概率来构造异字头的平均长 度最短的码字,有时称之为最佳编码,一般就叫作Huffman编码。-Huffman coding is a variable length coding (VLC) a. Huffman in 1952, a coding method that occur solely on the basis of characters to construct the di
except
- 检查文件读取,处理文件处理异常。阅读您的文件包然后写出其具体功能(至少要20个字)。-Check the document to read, to deal with document processing anomalies. Read your paper bag and then write their specific functions (at least 20 words).
eng-w
- 新东方老师强调的6级考试必备100个单词-New Oriental teachers to emphasize six examinations must have 100 words
Flowers_delivery_system
- 鲜花配送系统源码。该代码程序完善,能有电话提示(要的话另外支付费用)-Flowers delivery system source code. Procedures for improving the code, can have the phone prompt (to the words of additional fees may apply)
arithmeticCoding
- 该程序实现了算术编码的编译码,并得到随机信源的输出码字和编码效率。-The program achieves the encoding and decoding of arithmetic coding, and gets the output code words and coding efficiency of the random sourse.
cet6
- 六级重要词汇,必考。。。重要 六级重要词汇,必考。。。重要 六级重要词汇,必考。。。重要-Six key words, compulsory. . . An important six key words, compulsory. . . An important six key words, compulsory. . . An important six key words, compulsory. . . An important six key words, compulso
learnEnglish
- 实现英语单词的录入、修改、删除等基本操作。 实现常用英语单词例句的录入、修改、删除等基本操作。 实现英语单词检索、翻译等。 常用英语单词例句检索。 根据难度随机生成一份单词测试题目。 能够检索出短文及其翻译对照表。 具有数据备份和数据恢复功能 -Achieve the input of English words, modify, delete and other basic operations. Images of English words commonly u
cidian
- 对拼写单词进行纠正,适合进一步学习,不过里面没有词库。-Be corrected on the spelling words for further study, but there' s no thesaurus.
yyc
- 本程序可对一篇英文文章的单词进行简单的统计-This program can be an article in English words on a simple statistical
Huffman_encode
- 这是一个霍夫曼编码的程序,是利用霍夫曼树等相关算法解决的。在程序中,随机产生的10个字符,利用子函数: HC=HuffmanCoding(HT,HC,w,3) 则可以获得每个元素的码字,存储的方式是通过一个指针的指针。-This is a Huffman coding process is the use of Huffman tree related algorithms to solve. In the process, the randomly generated 10 charact
TestJAWS
- Jaws Application to fine similarity between two words
beidanci
- 让小学生很轻易地背单词,能让他们可以不用老师也能很好的学英语-Let students easily back words, they can not allow teachers to learn English well
dj
- dj斯科拉算法 短点好啊~~~描述20字-dj Scola algorithm shorter Well ~ ~ ~ Descr iption 20 words Keke
uniquely-decodable
- 判断是否唯一可译。输入:任意一个码字集合 。码字个数和每个具体的码字在运行时从键盘输入;输出:判决(是唯一可译码/不是唯一可译码)。 -Determine whether uniquely decodable. Input: an arbitrary set of code words. The number of codewords and each codeword at run time from the keyboard input Output: judgment (only d
HuffanCoding
- 读取数据,统计所得到的文件中每个字母的权值,创建哈夫曼树,哈夫曼编码。哈夫曼解码,解码后内容写入到指定的文件。 读取数据里面的内容是由英文单词组成。读取文件的时候传入文件存放的路径、读取方式以及读出以后存放的数组,最终可以得到一个存放目标文件内容的数组。 将得到的数组进行字母权值的统计,统计每个字母出现的次数,次数即为每个字母的权值。 将得到的字符数组与权值数组作为创建哈夫曼树的依据,哈夫曼树根据每个字母权值的大小来创建,每个节点,包括权值、父节点、左子、右子和字母本身。 根据哈