搜索资源列表
底层编程技术9
- 掌握输入输出函数的调用 • 了解扬声器发生端口的原理 -master input-output function ca
LZWCompaction
- 数据压缩编码LZW演示版本,基于文件的输入输出操作.-LZW data compression coding demo version, file-based input and output operations.
input is double
- 判断输入的数字串是否为偶数,用mod 2完成-importation of judgment whether the series is even, complete with mod 2
LZW111
- 用C++语言编译的LZW压缩算法,自我感觉编写不错,根据提示输入要压缩的文件名即可-C language compiler of the LZW compression algorithm, and feel good preparation, When prompted to input compressed file can be
h.263encoderVC
- h.263 c编码源码。目录下有input。qcif原始未压缩文件,运行程序生成重建文件recon。qcif和压缩后文件output。263文件。-h.263 c source code. Contents under input. Qcif original uncompressed files, run the program generator reconstruction documents recon. Qcif and compressed paper output. 263 doc
arithmeticencodingdecoding
- 1.一个vc++环境下的算术编码字符流的编码实例. 2.该编码可以实现任意输入编码字符序列,计算机识别统计字符概率并进行算术编码。 3.适合学生和vc++初学者使用,也可对算术编码基本原理的探求者较大的启示作用.-1. A vc + + environment arithmetic coding characters flow coding examples. 2. The codes can achieve arbitrary character input coding sequen
7zipDll2
- 内存中进行压缩和解压的两个方法: 压缩 int RamEncode(Byte *inBuffer, //输入内存缓冲区指针BYTE*类型 size_t inSize, //输入内存缓冲区的大小 Byte *outBuffer, //输出缓冲区指针BYTE*类型 size_t &outSize, //计算出的输出缓冲区大小 Int32 dictionary //字典的大小 )
SPIHT-compress
- 输入:为需要压缩图象的名称,该主程序仅能构处理256灰度图,读者可以自行改编为RGB处理;ratio为压缩比率;level为小波分解的级数 输出:是解压完毕的图象数据矩阵-input : the need for image compression name, the main program can only handle 256 gray level structure, Readers can own adaptation of RGB; ratio of compression ra
zlib-1.2.3
- We often get questions about how the deflate() and inflate() functions should be used. Users wonder when they should provide more input, when they should use more output, what to do with a Z_BUF_ERROR, how to make sure the process terminates properly
bianyizlh
- 自动生成一个LL(1)文法。对输入文法,由程序自动生成它的LL(1)分析表;对于给定的输入串,应能判断识别该串是否为给定文法的句型-LL (1) grammar. On the importation of grammar, automatically generated from the LL (1) Analysis Table; For a given input string, Recognition should be able to judge whether the series
Decode
- huffman decode all you need is input a data so that it will decode
huffman.rar
- 用优先队列实现霍夫曼编码,是对贪心算法实现的一个详细代码。输入文件是待编码文件,输出文件是各个字符编码信息。,Priority queue with the realization of Huffman code is a greedy algorithm to achieve a detailed code. Input file is to be encoded file, output file is all character encoding information.
xx
- 单片机程序举例,很好的程序。欢迎下载,液晶显示,万年历,计算器,电子琴,英文输入原程序及电路图-Single-chip process, for example, a very good procedure. Welcome to download, liquid crystal display, calendar, calculator, electronic organ, the original procedures and English input circuit
jiaoxuexitong
- 这是一个简单的教学管理系统。功能:可以进行学生,教师,课程信息的录入、修改、删除操作-This is a simple teaching and learning management system. Function: can be students, teachers, curriculum information, input, modify, delete operations
Surfac
- We describe and demonstrate an algorithm that takes as input an unorganized set of points fx1 xng IR3 on or near an unknown manifold M, and produces as output a simplicial surface that approximates M. Neither
Huffmancoding
- 霍夫曼编码算法,实现对输入信息(名称和权值)的霍夫曼编码并输出结果-Huffman coding algorithm, the realization of the input information (name and the right value) of the Huffman code and output results
Ls32DeCompress
- LZ Compression Utility 的反程序,专门解压缩被LZ Compression处理过的文件。 使用方法,启动Ls32DeCompress.exe,输入文件名称即可-LZ Compression Utility anti procedures, specialized extract was treated LZ Compression documents. To use, start Ls32DeCompress.exe, input file name
Huffman-encoding-decoding
- 哈夫曼编码与译码,能对输入的字符(有权值)进行建树、编码、译码-Huffman encoding and decoding can input characters (right value) for contributions, coding, decoding
suanshu
- 首先,计算出码元符号集中各个码元的累积概率,并存放在F数组里面。 然后,开始循环编码,直至输入序列循环完毕。 最后,将所得的累计概率由小数形式转化成二进制形式。 对解码。首先,计算码元符号集中各个码元的累积概率,并存放在F数组里面。 然后,开始循环解码,此次循环是在码元符号集中,由高概率码元向低概率码元循环,这是由于编码的输出肯定是不大于高概率码元的累积概率的。那么如果我们从高到底循环,所找到的第一个小于编码结果fs的码元即为所译码的码元。 最后,我们可以利用此码