CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - Huffman DECODE encode
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - Huffman DECODE encode - List
[
Other resource
]
Huffman
DL : 0
迄今为止见过的最方便的huffman编码,效率很高 一个外国人写的,很具有研究价值 Constructing a Huffman Tree according to the number of times each symbol appears in the data stream: 1) Create an array of N nodes, representing N possible symbols (ranging between 0 and N-1). 2) Set the value of each node to the number of times that its symbol appears in the data stream. 3) Create a Minimum-Heap of N nodes. 4) Add every node whose value is greater than zero to the heap. 5) Extract the best two nodes in the heap. 6) Create a parent node whose children are the two extracted nodes. 7) Add the parent node to the heap. 8) Repeat the previous three steps N-1 times (until only 1 node remains in the heap). 9) Extract the last node in the heap. The array created in the first step stores the leaves of the tree, and is used in order to encode the data stream. The node extracted in the last step is in fact the root of the tree, and is used in order to decode the data stream.
Update
: 2008-10-13
Size
: 17.37kb
Publisher
:
游弋人生
[
Data structs
]
HUF0000
DL : 0
霍夫曼算法编码、解压encode\decode-Huffman coding algorithm, unpacked encode \ decode
Update
: 2025-02-17
Size
: 10kb
Publisher
:
@_@
[
Compress-Decompress algrithms
]
huffman_code
DL : 0
huffman编码. 把一个英文字母,空格,句号.一共有28个 character. 先求每个字符出现的频率. 然后用频率对这个文件进行哈夫曼编码. 然后再进行解码. 运行的时候需要在VC++ 工程->设置->调试->程序变量里加E:\sample.txt E:\encode.txt E:\decode.txt 然后把英文文件放到E盘里.名叫samole.txt, 还有在E里新件2个txt文件.名叫encode.txt,decode.txt. 编码后的二进制save到encode.txt,解码后的英文字符save到decode.txt了.-Huffman coding. One English letters, spaces, full stop. A total of 28 character. Every character in first seeking the frequency. Then the frequency of text pieces for Huffman coding. then decode. When running in VC-
Update
: 2025-02-17
Size
: 2kb
Publisher
:
[
Other
]
Huffman
DL : 0
哈夫曼编码/译码器,可以对文字进行编码和译码,对文件进行加密和解密-Huffman encoding/decoding, and can encode and decode text on the document for encryption and decryption
Update
: 2025-02-17
Size
: 2kb
Publisher
:
杨小强
[
3D Graphic
]
Huffman
DL : 0
迄今为止见过的最方便的huffman编码,效率很高 一个外国人写的,很具有研究价值 Constructing a Huffman Tree according to the number of times each symbol appears in the data stream: 1) Create an array of N nodes, representing N possible symbols (ranging between 0 and N-1). 2) Set the value of each node to the number of times that its symbol appears in the data stream. 3) Create a Minimum-Heap of N nodes. 4) Add every node whose value is greater than zero to the heap. 5) Extract the best two nodes in the heap. 6) Create a parent node whose children are the two extracted nodes. 7) Add the parent node to the heap. 8) Repeat the previous three steps N-1 times (until only 1 node remains in the heap). 9) Extract the last node in the heap. The array created in the first step stores the leaves of the tree, and is used in order to encode the data stream. The node extracted in the last step is in fact the root of the tree, and is used in order to decode the data stream.-So far seen the most convenient huffman coding, efficient write a foreigner, I have research value Constructing a Huffman Tree according to the number of times each symbol appears in the data stream: 1) Create an array of N nodes , representing N possible symbols (ranging between 0 and N-1) .2) Set the value of each node to the number of times that its symbol appears in the data stream.3) Create a Minimum-Heap of N nodes.4) Add every node whose value is greater than zero to the heap.5) Extract the best two nodes in the heap.6) Create a parent node whose children are the two extracted nodes.7) Add the parent node to the heap.8) Repeat the previous three steps N-1 times (until only 1 node remains in the heap) .9) Extract the last node in the heap.The array created in the first step stores the leaves of the tree, and is used in order to encode the data stream.The node extracted in the last step is in fact the root of the tree, and is used in order to decode the data stream.
Update
: 2025-02-17
Size
: 17kb
Publisher
:
游弋人生
[
Compress-Decompress algrithms
]
huffmanprogram
DL : 0
用matlab软件实现图像的编码和解码,并对解压后的图像是否失真进行测试,采用的算法是huffman算法,经调试无误后上传-Matlab software used to encode and decode images and extract the image to test whether the distortion using the algorithm is huffman algorithm, after the upload through debugging correct
Update
: 2025-02-17
Size
: 4kb
Publisher
:
李添翼
[
Other
]
shujujiegou
DL : 0
已知某系统设计哈夫曼编码,利用哈夫曼编码进行通信。为信息收发站编写一个哈夫曼码的编/译码系统。-A system design known Huffman encoding, the use of Huffman coding to communicate. Information hubs for the preparation of a Huffman code to encode/decode system.
Update
: 2025-02-17
Size
: 19kb
Publisher
:
柯可
[
Windows Develop
]
Huffmanencoderdecoder
DL : 0
在发送端通过一个编码系统对待传输数据编码. 在接收端将传来的数据进行译码. 一个完整的系统应具有以下功能: (1)初始化.从终端读入字符集大小,以及字符和权值,建立 哈夫曼树,并保存. (2)编码.利用以建好的哈夫曼树对正文进行编码,然后保存. (3)译码.利用已建好的哈夫曼树将文件中的代码进行译码,结果打印出来. -At the sending end through a coding system for encoding transmit data treatment. Will be heard in the receiver to decode the data. A complete system should have the following functions: (1) initialization. Read from the terminal character set size, as well as the characters and the right values, the establishment of Huffman trees, and save. (2) coding. used to build the Huffman tree to encode the text and then save it. (3) decoding. the use of the Huffman tree has been built will document the code decoding, the results print out.
Update
: 2025-02-17
Size
: 3kb
Publisher
:
晶
[
JSP/Java
]
hfmtree
DL : 0
哈夫曼树最优搜索算法。欢迎使用haffman编/译码程序,本程序是对报文进行---①编码 ②译码 ③ 打印等 ,让我们开始吧-Optimal Huffman tree search algorithm. Welcome to haffman encode/decode process, the procedure is carried out packet decoding--- ① ② ③ encoding Print, etc. Let' s get started!!
Update
: 2025-02-17
Size
: 2kb
Publisher
:
写风
[
Graph program
]
Huffman
DL : 0
基于VC++6.0,利用哈夫曼编码对BMP图像进行编码并储存为*.huf格式的文件,同时也可对*.huf格式的文件进行解码,储存为*.bmp格式的图像-Based on VC++6.0, the use of Huffman coding to encode the image of BMP and saved as*. huf format, but also right*. huf decode the file format, stored as a*. bmp format images
Update
: 2025-02-17
Size
: 3.54mb
Publisher
:
ft5272633
[
Windows Develop
]
hfm
DL : 0
程序功能:建立哈夫曼树,对哈夫曼树进行编码译码显示码文和用凹入法显示哈夫曼树。-Program features: the establishment of Huffman tree, the tree of the Huffman code to encode decode display text and the use of indentation method showed Huffman.
Update
: 2025-02-17
Size
: 4kb
Publisher
:
chenjin
[
Special Effects
]
Huffman
DL : 0
实现Huffman编码,用于图像的处理,或者是信息传输中的数据压缩,减少存储容量-to complish huffman code into encode,decode.and tanslatate many l etters into many"0 or 1"to decrease the space.may you good luck!
Update
: 2025-02-17
Size
: 73kb
Publisher
:
nicholas
[
Special Effects
]
huffman
DL : 0
对yuv视频文件进行huffman编码和huffma解码-encode and decode the yuv videos with huffman algorithm
Update
: 2025-02-17
Size
: 12kb
Publisher
:
臧艳军
[
Special Effects
]
lena
DL : 0
对yuv视频文件同时进行huffman和小波编码和解码-encode and decode the yuv video with huffman and wavelet algorithm
Update
: 2025-02-17
Size
: 18kb
Publisher
:
臧艳军
[
Compress-Decompress algrithms
]
Huffman
DL : 0
This a program to encode and decode huffman code for strings. The input should be a text file with two dimentional string array.-This is a program to encode and decode huffman code for strings. The input should be a text file with two dimentional string array.
Update
: 2025-02-17
Size
: 3kb
Publisher
:
Santron
[
VC/MFC
]
HuffMan
DL : 0
设计程序,实现huffman编码与解码功能。用户选择编码功能后,提示用户输入要编码的符号及概率,输出每个符号的huffman编码。 选择解码功能后,提示用户输入收到的符号,输出解码结果。 -Design process to achieve huffman encoding and decoding functions. After the user to select encoding that prompts the user to encode the symbols and the probability, the output of each symbol huffman coding. Select decode function, prompts the user for the symbol received, the output decoding results.
Update
: 2025-02-17
Size
: 11kb
Publisher
:
刘磊
[
VC/MFC
]
huffman
DL : 0
实现huffman编码与解码功能.用户选择编码功能后,提示用户输入要编码的符号及概率,输出每个符号的huffman编码。 选择解码功能后,提示用户输入收到的符号,输出解码结果。-Implement huffman encoding and decoding functions. The user to select encoding feature that prompts the user to encode the symbols and the probability, the output of each symbol huffman coding. Select decode function, prompts the user for the symbol received, the output decoding results.
Update
: 2025-02-17
Size
: 165kb
Publisher
:
zhangshuanglu
[
Data structs
]
Huffman
DL : 0
哈夫曼编码 对电文进行编码 和解码功能 Huffman编码译码_模板_半空-Huffman coding to encode and decode messages Huffman coding and decoding _ _ empty template
Update
: 2025-02-17
Size
: 12.7mb
Publisher
:
王大飞
[
Compress-Decompress algrithms
]
software
DL : 0
数据压缩导论的对应软件代码.其中包括huffman decode /encode ,算术编码等。-Introduction to Data Compression soft code,includle huffman decode /encode, and arithmetic coding.
Update
: 2025-02-17
Size
: 7.48mb
Publisher
:
lee
[
Compress-Decompress algrithms
]
huffman
DL : 0
霍夫曼编码的压缩解压,获得码长方法是moffat法。(The encode and decode with huffman code.)
Update
: 2025-02-17
Size
: 2kb
Publisher
:
圆圆16138
«
1
2
3
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.