搜索资源列表
实验5
- 哈夫曼编码/译码 背景介绍: 利用哈夫曼编码进行通信可以大大提高信道利用率,缩短信息传输时间,降低传输成本。但是,这要求这发送端通过一个编码系统对待传数据预先编码,在发送端将传来的数据进行译码(复原)。对于双工信道。每端都需要一个完整的编译码系统。本程序将为这样的信息收发站写一个哈夫曼的编译码系统。 哈夫曼编码/译码: 程序运行步骤: 1、建立哈夫曼树,从键盘输入字符集大小,字符以及频度。 2、对字符进行编码,输出编码结果,分单个句子和整个句子输出,编码导入
算法设计与分析实验
- 哈夫曼编码。排序问题,利用贪心算法的思想实现哈夫曼编码算法程序 -Huffman coding. Scheduling problems, the greedy algorithm achieving Huffman coding algorithm
Huffman
- 通信实验指导:哈夫曼编码的matlab实现,有源码和详细文档
Huffman
- 霍夫曼树 实验报告 内含源码 以及运行界面 实现为N个权值设计哈夫曼编码
hafu
- 华南师范大学计机实验3,哈夫曼树,不含实验报告
kkkk
- 数据结构课程设计,包括哈夫曼编译码器+散列法实验研究+缔结斯特拉算法实现校园导游!-Curriculum design data structure, including Huffman codecs+ hash+ the conclusion of experimental study of law algorithm Stratford campus tour guide!
hafumanbiyimaqishiyanbaogao
- 使用VC++实现哈夫曼编译码器的功能,具有简单的界面,以及实验报告内容,对应严蔚敏《数据结构》中的哈夫曼实验内容-Use VC++ to achieve Huffman codec functions, a simple interface, and experimental contents of the report, the corresponding Yan Wei-Min " data structure" in the Huffman experimental co
huffman
- 用C++写的哈夫曼编码的实现 算法与数据结构课程实验可能用到哦-Huffman coding algorithm and data structure
ExperimentPPTaboutTtheoryOfInformation
- 信息论一些实验及课件,哈夫曼,香浓,游程码-some ting about xin xi lun ke jian & experiment
Huffman
- 哈夫曼编码(数据结构与算法分析课程设计实验源代码)-Huffman(Code ForData Structures)
hfmtree
- 哈夫曼树应用 数据结构作业 包括源代码和实验报告-Huffman Application
hafuman
- 一个简单的课程设计实验 哈夫曼树的编码 源程序及效果图-Hafuman
devc
- 数据库实验:哈夫曼树的源代码,实验课上用的到!-Database test: Huffman source code, experimental class used to!
my_huffman_tree
- 数据结构实验:哈夫曼树实验源代码,实验课上用的到-Experimental data structure: Huffman tree experiment source code, experimental class used to
huffman
- 哈夫曼编码 问题描述与实验目的: 给定n个字母(或字)在文档中出现的频率序列X=<x1,x2,…,xn>,求出这n个字母的Huffman编码。为方便起见,以下将频率用字母出现的次数(或称权值)w1,w2,…,wn代替。 输入样例 2 6 9 8 3 4 1 2 8 60 20 5 5 3 3 3 1 输出样例 Case 1 9 00 8 01 3 100 4 11 1 1011 2 1010 Case 2
expement
- 数据库实验包括停车场问题,管道施工问题,约瑟夫问题,哈夫曼编码和关键词检索5个程序-Database experiments, including parking problems, pipeline construction issues, Joseph Huffman and key words to retrieve the five programs
Huffman-codec
- 哈夫曼编译码器#include<iostream.h>//该程序实验哈夫曼树的建立、编码、译码三个基本功能 #include<stdio.h> #include<stdlib.h> #include<string.h> #include<fstream.h> typedef struct{ //结构体-Huffman codec
hufman
- 应用哈夫曼编码实现对灰度图片的压缩(原图片应先转码为bmp格式)(The application of Huffman coding to compress the grayscale images (the original image should be transcoded to BMP format first))
实现哈夫曼编码的代码
- 这是一个实现哈夫曼编码的完整代码,对于学习数据结构,完成实验的朋友有所帮助