搜索资源列表
Huffman
- 数据结构与算法 哈弗曼编码 算法
JAVA闹钟
- 数据结构上机实验的一些源代码。包含哈弗曼编码译码器,二叉树的遍历,算术表达式求值,拓扑排序等。
hfm
- 树形结构的应用 ——哈弗曼编码/译码1.程序的功能: 输入明文,通过统计不同字符出现的频率作为权值,生成哈弗曼树,并存于文件中;编码生成暗文,存于文件中;再由暗文生成明文,存于文件中。 2.输入输出的要求: 仅能输入英文字母作为明文,输出0、1组成的暗文。 3.测试数据: (1)asdjfas (2 ) dkfskjdfcijj (3 ) ovenmkjovi-1. Program features: input plaintext, t
hfm
- 数据结构实习题目哈弗曼编码-译码系统的完整设计-Internship topic data structure哈弗曼coding- decoding the integrity of the system design
datastructure
- 数据结构的全部课程实验,车厢调度,一元稀疏,停车站,哈弗曼-Data structure of a full course of experiments, train scheduling, one dollar sparse, parking stations,哈弗曼
HuffmanCode
- C++实现哈弗曼编码,学习数据结构的时候要用的-C++ Achieve哈弗曼coding, data structures when learning to use the
shujujiegoukeshebaogao
- 数据结构课程设计包括1运动会分数统计程序的设计与实现2航空订票系统程序的设计与实现3约瑟夫环程序的设计与实现4哈弗曼程序的设计与实现,有程序源代码和结果截屏-Data structure course design, including scores of statistical procedures 1 Games Design and Implementation of 2 procedures for air booking system Design and Implementation
hafuman
- 是数据结构的作业,有哈弗曼编码/译码、印哈弗曼树的代码以及实验报告-Data structure is operating, there哈弗曼encoding/decoding, India哈弗曼tree code and experimental report
shu_ju_jie_gou_ke_cheng_she_ji(1)
- 数据结构课程设计源码以及报告 有3个程序:1)哈弗曼树及哈弗曼编码 2)排序—内部排序方法 3)Hanoi Tower-Data structure, as well as curriculum design source reported three procedures: 1)哈弗曼trees and哈弗曼coding 2) sort- internal sorting method 3) Hanoi Tower
huffman
- 数据结构中的哈弗曼编码的实现源码,此源码中包含了详细的描述-Data structure encoded in the implementation哈弗曼source, this source contains a detailed descr iption of
huffmantree
- 数据结构课程设计 哈弗曼树 哈夫曼树应用-Data structure tree curriculum design applications Huffman tree
HuffmanDecoder
- Huffman Decoder 哈弗曼编码器 C语言描述 数据结构与算法 利用三叉树-Huffman Decoder
huffman
- 该压缩包是描述数据结构与算法中的哈弗曼树的Java源程序,可以直接导入Eclipse即可查看效果-The compressed packet is to describe data structures and algorithms in the Java source tree哈弗曼can be directly into Eclipse to see the effect of
DataConstructure
- 学习数据结构的一本宝典,各个章节详细的PPT内容,还包括了递归、哈弗曼编码、链表、树、图、栈与队列等的Flash动画演示,让我们能够更好的感官理解数据结构的机理。对于数据结构的学习很有帮助。-Data Constructure
HoffmanEncoder
- 用C语言实现数据结构中的哈弗曼编译器。可以求出n个字符的赫夫曼编码。建立函数输入二叉树,输出其赫夫曼编码。用户输入n个字符在电文中的使用频率(扩大100倍),并输入这n个字符,确定后系统给出这n个字符的赫夫曼编码。-With the C language data structures Havermann compiler. You can find the n-character Huffman encoding. The establishment of a function input b
huffman
- 数据结构作业同学们可能需要哈弗曼编码源程序加实验报告-Havermann source code plus Experimental Report
yasuo_zw
- 简单的实习文件压缩和解压,采用哈弗曼树,采用的数据结构编程-Simple file compression and decompression practice, using Havermann tree data structure used in programming
HuffmanCode
- 本程序是数据结构中常见的哈弗曼编码的实现,通过统计文本文件中的字符出现次数,在另一个文本文件中输出统计次数及对应编码,在两一个文本文件中可以给出英语短文对应的翻译编码。-This procedure is common Havermann data structure encoded to achieve, through the statistics text file in the number of characters that appear in another text file i
HaffmanCode
- 数据结构 哈弗曼实现压缩算法
给定权值,哈弗曼编码、译码
- 假设某通信报文的字符集由A,B,C,D,E,F这6个字符组成,它们在报文中出现的频度(频度均为整数值)。 (1)构造一棵哈弗曼树,依次给出各字符编码结果。 (2)给字符串进行编码。 (3)给编码串进行译码。 规定: 构建哈弗曼树时:左子树根结点权值小于等于右子树根结点权值。 生成编码时:左分支标0,右分支标1。 输入 第一行:依次输入6个整数,依次代表A,B,C,D,E,F的频度,用空格隔开。 第二行:待编码的字符串 第三行:待译码的编码串 输出 前6行依次输出各