搜索资源列表
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
hfmtree
- 哈夫曼树应用 数据结构作业 包括源代码和实验报告-Huffman Application
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
huffman
- 数据结构实验-利用二叉树结构实现哈夫曼编/解码器-The Experimental on data structure- which uses binary tree Huffman encoder/decoder
Huffman-codec
- 哈夫曼编译码器#include<iostream.h>//该程序实验哈夫曼树的建立、编码、译码三个基本功能 #include<stdio.h> #include<stdlib.h> #include<string.h> #include<fstream.h> typedef struct{ //结构体-Huffman codec
SHUJUJIEGOU
- 数据结构实验,关于哈夫曼树的,代码是已调试过的,没有错误-Experimental data structure, Huffman tree is already debugged code, no errors
hufman
- 应用哈夫曼编码实现对灰度图片的压缩(原图片应先转码为bmp格式)(The application of Huffman coding to compress the grayscale images (the original image should be transcoded to BMP format first))
实现哈夫曼编码的代码
- 这是一个实现哈夫曼编码的完整代码,对于学习数据结构,完成实验的朋友有所帮助