CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - code huffman

搜索资源列表

  1. Huffman

    0下载:
  2. 实现了哈夫曼树,以及使用哈夫曼树进行简单的编码,初学仅供参考-Implementation of a Huffman tree, and the use of Huffman tree for simple code, beginners are for reference only
  3. 所属分类:Console

    • 发布日期:2017-11-23
    • 文件大小:959598
    • 提供者:lvlin
  1. Huffman-tree

    0下载:
  2. 根据严蔚敏的《数据结构》一书中的赫夫曼树算法实现的代码c-Huffman tree code c++
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-20
    • 文件大小:916123
    • 提供者:christy9088
  1. Huffman-

    0下载:
  2. 用c语言编写的创建哈弗曼树的代码,代码涉及到创建哈弗曼树,遍历哈弗曼树-C language code to create the Huffman tree, the code involves creating the Huffman tree, traverse the Huffman tree
  3. 所属分类:Console

    • 发布日期:2017-11-13
    • 文件大小:764
    • 提供者:杰杰
  1. Huffman

    0下载:
  2. 哈夫曼编码设计 掌握树和二叉树的概念及工作原理,运用其原理及概念完成上述实验题中的内容。 -Huffman trees and binary code design to grasp the concept and principle, to use its principles and concepts in the above experiment of the content.
  3. 所属分类:CSharp

    • 发布日期:2017-11-30
    • 文件大小:34540
    • 提供者:天溟
  1. Huffman-coding-Information-Theory

    0下载:
  2. 帮别人做的一个信息论哈夫曼程序,通过信源个数,信源权重进行编码,可得到平均码长和编码效率,代码有注释,方便理解。-Someone else to do a theory Huffman program, through the number of sources, source coding weights can be obtained average code length and coding efficiency, code annotated, easy to understand.
  3. 所属分类:Console

    • 发布日期:2017-11-15
    • 文件大小:1888
    • 提供者:Bernie
  1. huffman-code

    0下载:
  2. 哈弗曼的编码与译码,在D文件夹下建立文本文件,输入英文文章,运行程序,可实现哈弗曼的编码与译码-Huffman encoding and decoding, the D folder created text file, enter the English articles, operating procedures, can achieve Huffman encoding and decoding
  3. 所属分类:Other systems

    • 发布日期:2017-03-31
    • 文件大小:1780
    • 提供者:那强
  1. huffman

    1下载:
  2. 利用赫夫曼编码的实现原理码对数据进行无损压缩,设计一个实现Huffman压缩的编码和解码的程序。具体要求如下:读入待压缩的文本文件; 2)统计分析文本文件中各字符的出现频度,以频度作为构造Huffman树的权值。根据各字符出现的不同频度构造Huffman树,然后规定每种字符的Huffman编码。再次读入待压缩的文本文件,然后根据各字符的Huffman编码逐一替代,将得到的编码流写入到新的文件中,并且计算压缩率。 5)解码过程:先读入上一步骤得到的新文件,将其看作比特流,根据Huffman
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:1277534
    • 提供者:phoebe
  1. huffman-code

    0下载:
  2. 利用树形结构的各种操作,程序能够完成“输入权值,输出码值”的功能。-Various operations using the tree structure, the program can be completed " Input right value, the code value" function.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:1869
    • 提供者:shimijun
  1. huffman

    0下载:
  2. 进行霍夫曼(Huffman)编码的实用C/C++程序,对于构建Huffman树的算法已经优化,可以在消耗内存最小的情况下提升编码速度. 对ASCII码字符串进行Huffman编码.-An C/C++ program that demonstrates how to construct a Huffman tree through which Huffman Code can be realized. The algorithm has been optimized to work under
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:1152
    • 提供者:ricyn
  1. huffman

    0下载:
  2. 利用C++实现哈夫曼编码,进而实现二进制编码,以节省资源-Use C++ Huffman coding, thus achieving binary code, in order to save resources
  3. 所属分类:Console

    • 发布日期:2017-04-13
    • 文件大小:1964
    • 提供者:yiran
  1. Huffman

    0下载:
  2. 用哈夫曼数的框架结构进行数值排序,完整的C代码,输入数值可用。-Huffman frame structure with the number of numerical order, the complete C code, enter the value available.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-17
    • 文件大小:20508
    • 提供者:石坚
  1. huffman.c

    0下载:
  2. Huffman编码属于熵编码的方法之一,是根据信源符号出现概率的分布特性而进行的压缩编码。 Huffman编码的主要思想是:出现概率大的符号用短的码字表示;反之,出现概率小的符号用长的码字表示。 Huffman编码过程描述: 1. 初始化: 将信源符号按出现频率(或概率)进行递增顺序排列,输入集合L 2. 重复如下操作直至L中只有1个节点: (a) 从L中取得两个具有最低频率(或概率)的节点,为它们创建一个父节点; (b) 将它们的频率和(或概率和)赋给父结点,并
  3. 所属分类:CSharp

    • 发布日期:2017-04-15
    • 文件大小:5995
    • 提供者:mousejohn
  1. code-and-decode-for--hoffman

    0下载:
  2. 代码中写出了哈弗曼树编码与解码的相关内容,请有兴趣的来看看验证。-Write code encoding and decoding Huffman tree related content, please verify interested to see.
  3. 所属分类:Other systems

    • 发布日期:2017-04-07
    • 文件大小:2113
    • 提供者:庞文杰
  1. huffman

    0下载:
  2. 利用哈夫曼编码来进行图像的压缩解压程序代码。-Using Huffman coding for image compression decompression program code.
  3. 所属分类:Multimedia Develop

    • 发布日期:2017-04-11
    • 文件大小:688
    • 提供者:yangjintao
  1. huffman

    0下载:
  2. VC++实现huffman的编码,简单易懂-VC++ implementation of Huffman code, easy to understand
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:1046
    • 提供者:学吧
  1. Huffman

    0下载:
  2. 用赫夫曼树进行编码和解码的相关操作,支持字符串的加密和解密-the procedure was wrote for huffman code ,which can be uesd to encode sting
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-17
    • 文件大小:4162412
    • 提供者:william
  1. Huffman

    0下载:
  2. this code helps us to compress a text using huffman algorithm
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-14
    • 文件大小:3547
    • 提供者:sahar.enit
  1. Huffman-code

    0下载:
  2. 哈夫曼编译器,绝对值得一看,不要错过哦-The Huffman compiler, definitely worth a look, do not miss oh
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-14
    • 文件大小:4190
    • 提供者:dasda
  1. huffman

    0下载:
  2. source code for huffman
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:1318
    • 提供者:baran
  1. Huffman-Tree

    0下载:
  2. 使用三叉链表实现的哈夫曼树,统计inputfile1.txt中各字符的出现频率,并据此构造Huffman树,编制Huffman 码;根据已经得到的编码,对01形式的编码段进行译码。 具体的要求: 1.将给定字符文件编码,生成编码,输出每个字符出现的次数和编码; 2.将给定编码文件译码,生成字符,输出编码及其对应字符。 -Emergence of the frequency of each character in the trigeminal lists using the Hu
  3. 所属分类:Console

    • 发布日期:2017-05-12
    • 文件大小:2870008
    • 提供者:yyy
« 1 2 3 45 6 7 8 9 10 »
搜珍网 www.dssz.com