搜索结果
找到约 434 项符合
Huffman 的查询结果
按分类筛选
- 全部分类
- 压缩解压 (236)
- 数据结构 (65)
- 其他 (24)
- matlab例程 (13)
- Java编程 (10)
- 数值算法/人工智能 (9)
- 加密解密 (8)
- 通讯编程文档 (5)
- 编译器/解释器 (5)
- 学术论文 (4)
- 数学计算 (4)
- VC书籍 (4)
- 文件格式 (4)
- 通讯/手机编程 (4)
- VHDL/FPGA/Verilog (3)
- 其他书籍 (3)
- 单片机开发 (3)
- 语音压缩 (2)
- 文章/文档 (2)
- 书籍源码 (2)
- 教育系统应用 (2)
- 源码 (2)
- 多媒体处理 (1)
- 教程资料 (1)
- DSP编程 (1)
- Java书籍 (1)
- 技术管理 (1)
- 网络 (1)
- 汇编语言 (1)
- STL (1)
- 游戏 (1)
- 邮电通讯系统 (1)
- 软件设计/软件工程 (1)
- 操作系统开发 (1)
- 其他嵌入式/单片机内容 (1)
- 电子书籍 (1)
- Applet (1)
- 嵌入式/单片机编程 (1)
- 3G开发 (1)
- 论文 (1)
- 经验 (1)
- 技术资料 (1)
压缩解压 Generates a static minimum-variance Huffman code tree.
Generates a static minimum-variance Huffman code tree.,详细给出了HUFFMAN码树构造
压缩解压 Huffman.c 本演示程序提供了哈夫曼编码法的压缩和解压缩函数
Huffman.c
本演示程序提供了哈夫曼编码法的压缩和解压缩函数,并实现了对图象
文件的压缩和解压缩
数值算法/人工智能 I ve written some many years ago dynamic Huffman algorithm to compress and decompress data. It is ma
I ve written some many years ago dynamic Huffman algorithm to compress and decompress data. It is mainly targeted to data with some symbols occuring more often than the rest (e.g. having some data file consisted of 3 different symbols and their total number of occurence in that file s1(1000), s2(200 ...
压缩解压 Huffman算法的详细解析,包括建立Huffman树的方法,编码和解码
Huffman算法的详细解析,包括建立Huffman树的方法,编码和解码
压缩解压 对输入数字计算出Huffman树并输出
对输入数字计算出Huffman树并输出,
输出自顶层开始
压缩解压 huffman编码的c++实现源码
huffman编码的c++实现源码,内有详细说明。
单片机开发 Library and command line program for Huffman encoding and decoding both files and chunks of memory.
Library and command line program for Huffman encoding and decoding both files and chunks of memory. The encoder is a 2 pass encoder. The first pass scans the data and builds the Huffman tree. The second pass encodes the data. The decoder is one pa
压缩解压 huffman编码程序
huffman编码程序,基于matlab
Java编程 HuffmanEncoder 一个使用java编写的Huffman编码程序
HuffmanEncoder
一个使用java编写的Huffman编码程序,根据文本(此处使用DecOfInd.txt)中的字母和符号出现的次数进行Huffman编码并且转为01字符输出,即文件DecOfInd.huf。
Java编程 HuffmanDecoder 使用java编写的Huffman解码器
HuffmanDecoder
使用java编写的Huffman解码器,通过读取HuffmanEncoder产生的DecOfInd.huf编码文件,进行解码从而恢复成可读取的原文件。配合HuffmanEncoder使用。此处使用的是指定的text文件,可自行更改。