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

搜索资源列表

  1. HuffmanCode

    0下载:
  2. 本算法的作用是利用建立的huffman编码进行编码和译码。首先要建立huffman树,其主要的思想是权大的外结点靠近根,权小的远离根。大体的算法是在n个结点中不断的选取两个相对小的结点建立huffman树,直到全部结点都在huffman树中。-The role of this algorithm is the use of established code huffman encoding and decoding. First of all, to establish huffman tree
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-15
    • 文件大小:6.89kb
    • 提供者:pig
  1. c

    0下载:
  2. 这是哈弗曼吗的编码与译码程序,下载之后用visual c++ 打开-this is a program about HuffmanCode。please use visual c++ to open it.
  3. 所属分类:Other systems

    • 发布日期:2017-04-06
    • 文件大小:187.78kb
    • 提供者:
  1. HuffmanCode

    0下载:
  2. 通过哈夫曼树对字符进行编码,并能把哈夫曼码解码成比特流-Through the Huffman coding tree for the characters, and can decode Huffman codes into a bit stream
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:1.8kb
    • 提供者:萧月
  1. huffmancode

    0下载:
  2. 哈弗曼编码。输入需要编码的大小写字符即可得出各个字符的编码-Havermann coding. Enter the desired case characters can be encoded in various character encoding obtained
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:1.24kb
    • 提供者:miwua
  1. HuffmanCode

    0下载:
  2. 哈夫曼编码,可以编码几乎所有的字符,同时还可译码-Huffman coding, can be coded almost all of the characters, while also decoding
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:1.57kb
    • 提供者:小胡
  1. huffmancode

    0下载:
  2. 通过哈夫曼算法实现哈夫曼树编码,成功压缩和解压缩文件-Huffman code
  3. 所属分类:Other systems

    • 发布日期:2017-04-06
    • 文件大小:147.16kb
    • 提供者:LiLei
  1. huffmancode

    0下载:
  2. 哈弗曼编码、解码,使用vc++实现,输入字符串得出树形并编码-Havermann coding, decoding, using vc++ implementation and coding input strings drawn tree
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-08
    • 文件大小:1.61mb
    • 提供者:刘龙
  1. HuffmanCode

    0下载:
  2. (1)鼠标输入一个待压缩短文本文件,统计文本文件中各字符的个数作为权值,生成哈夫曼树。 (2)将文本文件利用哈夫曼树进行编码。 (3)把哈夫曼编码用二进制位紧缩到一个变量中,利用位运算进行真正的数据压缩。 (4)界面友好,易于操作,采用菜单方式进行选择。 -(1) the mouse to enter a short text file to be compressed, statistics text file as the number of characters in t
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-08
    • 文件大小:1.81mb
    • 提供者:
  1. HuffmanCode

    0下载:
  2. 给定任意个不同权值,使用最优二叉树得到前缀码,实现赫夫曼编码-Given any number of different weights, the optimal binary tree of prefix codes, the Huffman coding
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:13.75kb
    • 提供者:郑青青
  1. huffmancode-0.1

    0下载:
  2. 构造霍夫曼树 ////////////////////// //根据权重生成霍夫曼树 //weight 权重数组 //n 权重数组长度 //NewTree 新生成的霍夫曼树 void createHFMTree(int* weights,int n,BinaryTree<int>& NewTree) { //初始化堆 MinHeap<BinaryTree<int> > heap(n) int i=0 f
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-16
    • 文件大小:2.88kb
    • 提供者:kimikami
  1. HuffmanCode

    0下载:
  2. huffman 编码,能对一个文件里面的字符串进行编码,也能进行反编译-huffman code
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-04
    • 文件大小:539.34kb
    • 提供者:lilong
  1. HuffmanCode

    0下载:
  2. 这是我们团队写的哈弗曼编码与解码的程序,包含文件操作,使用VC++6.0编写的,是学习C语言的很好的实例-This is our team to write the Huffman encoding and decoding process, including file operations, use VC++6.0 written, is a good example to learn C language
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-24
    • 文件大小:217.85kb
    • 提供者:tgl
  1. HuffmanCode

    0下载:
  2. 赫夫曼编码,能够将任意的字符通过赫夫曼编码转换为相应的01序列,并能够读取01序列将其译码成所需的字符文件。-Huffman coding, any character can be converted by means of Huffman coding sequence corresponding to 01 and 01 can read the sequence desired to be decoded into characters in the file.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:1.64kb
    • 提供者:Jerry
  1. huffmancode

    5下载:
  2. 利用最小堆编程实现给定权值集合下构造相应霍夫曼树的算法,并解决以下问题: 有一电文共使用五种字符a,b,c,d,e,其出现频率依次为4,7,5,2,9。 (1)构造对应的编码哈夫曼树(要求左子树根结点的权小于等于右子树根结点的权)。 (2)给出每个字符的哈夫曼编码。 (3)译出编码系列11 00 011 10 00 10 10 11的相应电文。 -With a minimum heap programming under a given set of weights to c
  3. 所属分类:Other windows programs

    • 发布日期:2015-12-30
    • 文件大小:2kb
    • 提供者:DawnMao
  1. HuffmanCode

    0下载:
  2. 哈夫曼编码的C语言程序,其中采用了两种不同的方法实现编码-Huffman coding in C language program, which uses two different methods to achieve coding
  3. 所属分类:Other systems

    • 发布日期:2017-05-03
    • 文件大小:628.06kb
    • 提供者:ch
  1. huffmancode

    0下载:
  2. the C++ code of the huffman segement
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:1.12kb
    • 提供者:菜菜菜
搜珍网 www.dssz.com