CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - HUFFMAN算法

搜索资源列表

  1. comp.zip

    0下载:
  2. Huffman算法做的压缩解压程序
  3. 所属分类:压缩解压

    • 发布日期:
    • 文件大小:4340
    • 提供者:
  1. huff_file.zip

    0下载:
  2. 用于文件压缩的huffman算法
  3. 所属分类:压缩解压

    • 发布日期:
    • 文件大小:14089
    • 提供者:
  1. huff_stream.zip

    0下载:
  2. 用于数据流压缩的huffman算法
  3. 所属分类:压缩解压

    • 发布日期:
    • 文件大小:16382
    • 提供者:
  1. 统计英文文章的字符个数并huffman编码

    4下载:
  2. a)需求分析: 任务 :对一篇英文文章,统计各字符出现的次数,实现Huffman编码; 要求:输出每个字符出现的次数和编码,其中求最小权值要求用堆实现; b)概要设计: 本程序所使用的数据结构是树和线性表,所使用的算法主要有堆排序、赫夫曼算法。 -a) Requirements Analysis : Mandate : an article in English, statistics of the number of characters to achieve Huffma
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2838
    • 提供者:李韦纬
  1. HUFFMAN编码1

    0下载:
  2. 该程序为数据结构的一个很重要的算法,和容易掌握的!-procedures for the data structure of a very important algorithms, and easy!
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:6403
    • 提供者:邓斌
  1. 算法设计与分析实验

    0下载:
  2. 哈夫曼编码。排序问题,利用贪心算法的思想实现哈夫曼编码算法程序 -Huffman coding. Scheduling problems, the greedy algorithm achieving Huffman coding algorithm
  3. 所属分类:数据库编程

    • 发布日期:2008-10-13
    • 文件大小:20352
    • 提供者:无有
  1. 统计压缩算法

    0下载:
  2. 1. 实现任一种统计压缩算法(如:Shannon-Fano编码、Huffman编码、算术编码等),并对自定义文件进行压缩和解压,检验结果。 2. 采用C/C++编写程序 -1. The realization of a statistical compression algorithm (eg : Shannon-Fano coding, Huffman coding, arithmetic coding, etc.), as well as from the definition f
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:13170
    • 提供者:陆俊
  1. huffmanFORdatastreamcompress

    0下载:
  2. 用于数据流压缩的huffman算法源代码,c++编写,程序十分简练-data flow for the Huffman compression algorithm source code, c preparation, the procedure was very concise
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:16857
    • 提供者:郝春风
  1. eightofHuffman

    0下载:
  2. 1.这些代码意在演示不同Huffman算法的实现原理 2.上述算法分别对应于8个同名C++类,这些类都是由huffman_base类派生的。-1. The code is intended to demonstrate the different Huffman algorithm Principle 2. These algorithms respectively corresponding to the eight named category C, these categories a
  3. 所属分类:图形图象

    • 发布日期:2008-10-13
    • 文件大小:86746
    • 提供者:曾学霖
  1. MP3encoder

    0下载:
  2. 这是一个MP3解码源代码,采用huffman算法编解码方法-This is a MP3 decoder source code, using Huffman codec algorithm method
  3. 所属分类:多媒体

    • 发布日期:2008-10-13
    • 文件大小:42019
    • 提供者:李天武
  1. Floyed-Huffman-prim

    0下载:
  2. 算法设计与分析课程中常用的一些算法,包括Floyed算法,Huffman算法、prim算法,单源最短路径算法,分数背包问题-Algorithm Design and Analysis course some commonly used algorithms, including Floyed algorithm, Huffman algorithm, prim algorithm, single-source shortest path algorithm, fractional knapsac
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:540647
    • 提供者:liyuqin
  1. Huffman

    0下载:
  2. 使用huffman算法对字符串进行压缩,显示压缩详情,压缩比-Use huffman compression algorithm for string display compression details, compression ratio
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-05-13
    • 文件大小:2876513
    • 提供者:Yin
  1. Huffman

    0下载:
  2. 利用Huffman算法实现的简单压缩程序,可以压缩各种格式的文件。-Use Huffman algorithm to compress various files.
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-14
    • 文件大小:3708
    • 提供者:秦汉民
  1. huffman

    0下载:
  2. 基于Huffman编码的文件压缩设计:本次实验将文件中的字符作为结点,每个字符在文件中出现的频率作为结点的权值,采用Huffman算法构造Huffman树,将字符用尽可能短的二进制数位表示(频率越低,二进制数位越长),而不是用8位的ASCII码进行存储,已达到节省存储空间,压缩文件的目的。 程序设计的步骤如下: 1、统计需压缩文件中每个字符出现的频率; 2、将每个字符出现的频率作为叶子结点构建Huffman树,然后将树中结点引向其左孩子的分支标“0”,引向其右孩子的分支标“1”;
  3. 所属分类:Data structs

    • 发布日期:2017-04-30
    • 文件大小:78022
    • 提供者:
  1. Huffman

    0下载:
  2. 利用Huffman算法编写的代码,能够实现压缩解压的功能-Huffman Coding
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-05-13
    • 文件大小:2650452
    • 提供者:刘用翔
  1. parctice3

    0下载:
  2. 一个简单的基于huffman算法的压缩程序(A simple compression algorithm based on Huffman algorithm)
  3. 所属分类:压缩解压

    • 发布日期:2017-12-24
    • 文件大小:5653504
    • 提供者:Merriest
  1. huffman

    0下载:
  2. 详细介绍了哈夫曼编码的详细过程和实现,有需要可以下载(Detailed Huffman coding detailed process and implementation, there is need to download)
  3. 所属分类:书籍源码

    • 发布日期:2018-01-05
    • 文件大小:367616
    • 提供者:CD651
  1. huffman

    0下载:
  2. 基于赫夫曼树的压缩算法 二进制读入文件,对txt有较好压缩效果,而对MP4、pdf等已经被处理过的文件格式效果不不明显。但是是初学者很好的学习资料。(The compression algorithm based on Huffman tree Binary read into the file, TXT has a better compression effect, and MP4, PDF has been processed file format effect is not not
  3. 所属分类:压缩解压

    • 发布日期:2018-01-08
    • 文件大小:783360
    • 提供者:絮缘
  1. 赫夫曼算法C++

    0下载:
  2. 赫夫曼压缩算法的C++实现,可用于对字符串的压缩并计算压缩率(Huffman compression algorithm C++)
  3. 所属分类:压缩解压

    • 发布日期:2018-01-10
    • 文件大小:401408
    • 提供者:12xx11
  1. 多元Huffman编码问题

    0下载:
  2. 多元Huffman编码问题 问题描述:在一个操场的四周摆放着n堆石子,现要将石子有次序地合并成一堆。规定每次至少选2堆至多选k堆石子合并成新的一堆, 合并的费用为新的一堆石子数。计算出将n堆石子合并成一堆的最大总费用和最小总费用。 算法设计:对于给定的n堆石子,计算合并成一堆的最大总费用和最小总费用。 数据输入:文件的第1行有2个正整数n和k,表示有n堆石子,每次至少选2堆至多选k堆石子合并。第2行有n个数,分别表示每堆石子的个数。 输入示例: 7 3 45 13 12 16 9
  3. 所属分类:汇编语言

« 1 2 3 45 6 7 8 9 10 ... 44 »
搜珍网 www.dssz.com