CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - 文件编码

搜索资源列表

  1. 05

    0下载:
  2. 1.接受原始数据:从终端读入字符集大小n,n个字符和n个权值,建立哈夫曼树。2.编码:利用已建立好的哈夫曼树,对文件中的正文进行编码。3.译码:利用已建立好的哈夫曼树将代码进行译码。4.打印编码规则:即字符与编码的一一对应关系。-1. Accept the raw data: From the terminal reads the character set size n, n characters, and n-weights, the establishment of Huffman tre
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:117036
    • 提供者:楚潇
  1. huffman_3

    0下载:
  2. 功能包括从文件中读取文章,将文章转换为哈夫曼编码,将哈夫曼编码还原,就是那几个基本算法的实现啦。 为了方便查看,这里输出的哈夫曼编码是1byte的,其实真正应该将其变为1bit存储,这样才能达到压缩的目的。-Features include articles to read from the file, the article is converted to Huffman coding, Huffman coding will be restored and that is the rea
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:2393
    • 提供者:xiang
  1. Huffman

    0下载:
  2. 数据结构课程实验“哈夫曼编码”。使用文件输出-Data Structure course experiment, " Huffman coding." Using the File Output
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:2499
    • 提供者:c
  1. huffman_coding

    0下载:
  2. 本程序建立了哈夫曼树并求出了各字符哈夫曼编码,但不能对需要编码的文件进行分析,作出最优或 近似最优的决策 建树的时间复杂度:O(nlogn) 求解编码的平均时间复杂度:O(n*d) d为哈夫曼树叶子的深度的期望,最坏情况的d=(n^2+n-2)/2n. 编码的最坏时间复杂度为O(n^2)-This procedure established a Huffman tree and calculated the various characters in Huffman c
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1622
    • 提供者:刘晓明
  1. C

    0下载:
  2. 本文件包包含了1.长征时相加;2.二叉树的基本操作;3.哈弗曼编码;4.停车管理系统;5.括号匹配;6.图书馆管理系统;的操作-This document package contains 1. Long time add 2. The basic operation of a binary tree 3. Havermann coding 4. Parking management system 5. Parenthesis matching 6. Library managemen
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:89372
    • 提供者:winds
  1. shujujiegou

    0下载:
  2. 哈弗曼编码译码器,以实现文件等的宝马传输功能-Havermann codec, in order to achieve file transfer functions such as BMW
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:6728
    • 提供者:王乐乐
  1. HuffmanCoding

    0下载:
  2. 用哈夫曼编码实现文件压缩。压缩模块是通过构造哈夫曼树,以文件中字符出现的次数作为权值,得到哈夫曼编码对文件进行压缩。首先扫描文件统计字符出现次数,存入链表中。再将链表中的weight依次赋予权值,然后创建对应的哈夫曼树。最后将生成的哈夫曼树的长度写入文件,再将生成的哈夫曼树写入压缩文件。 解压缩模块是要将压缩文件还原为原文件。先读取一个4字节的哈夫曼树长度,根据读取的长度分配对应大小的哈夫曼树存储空间,然后读取哈夫曼树。-File compression with Huffman Codin
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:154542
    • 提供者:秋月白
  1. Huffman

    0下载:
  2. 1.要求对文件进行Huffman编码的算法,以及对一编码文件进行解码的算法 2.熟练掌握二叉树的应用 -1. Requested documents Huffman coding algorithm, as well as an algorithm to decode encoded files 2. Familiar with the application of binary tree
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:159066
    • 提供者:wang
  1. Huffman

    0下载:
  2. 哈弗曼编码 并且向文件里输出进行的哈弗曼编码值。-Ha Fuman coding
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:7865
    • 提供者:suiyi
  1. main

    0下载:
  2. 自己编写的数据文件的哈夫曼编码算法压缩程序,纯C语言编写,应该可以直接使用。-Write my own data file compression program Huffman coding algorithm, written in pure C, should be used directly.
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:2543
    • 提供者:YinWenjie
  1. huffman

    0下载:
  2. 哈弗曼树编码,给定电文进行哈夫曼编码,给定编码进行哈夫曼译码。要求电文存储在文件1中,编码后的结果存储在文件2中,给定编码存储在文件3中,译码后的结果存储在文件4中。-Ha Fuman tree coding, given the message to Huffman coding, Huffman coding given decoding. Requested message is stored in the file 1, the encoded result is stored in a
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:1755
    • 提供者:吴芳
  1. RS

    0下载:
  2. RS码即里德-所罗门码,它是能够纠正多个错误的纠错码,采用C语言实现RS码的编码,具体参数及操作见CPP文件-RS encoding
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:6544
    • 提供者:龙小凤
  1. MyHuffman

    0下载:
  2. 作为数据结构课程设计的赫夫曼编码解码器,功能功能强大,能压缩任意文本文件-Huffman code
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:874031
    • 提供者:
  1. huffman

    0下载:
  2. 从文件中读入字符集大小n,以及n个字符和n个权值。构建哈夫曼树,对每个字符生成哈夫曼编码。从文件中读入需编码的字符串,利用哈夫曼编码,对字符串进行编码,编码结果保存在文件。-The character read from the file set size n, and n-n character and the right values. Construction of Huffman tree generated Huffman code for each character. Read f
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:1455
    • 提供者:伍艳权
  1. Haffuman-Tree-

    0下载:
  2. 哈夫曼树的建立,对输入文件的内容字符进行统计编码,保存为01代码,然后在对其解码并验证。-Huffman Tree Construction, the character of the contents of the input files for statistical encoding, save for the 01 code, then decode it and verify.
  3. 所属分类:Data structs

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

    0下载:
  2. 这是数据结构的一个课程设计,用哈夫曼算法对文件进行编码,希望能给大家一点帮助-This is a course designed data structure, with the Huffman algorithm to encode the file, I hope to give everyone a little help
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:4758
    • 提供者:peter
  1. huffman

    0下载:
  2. 对任意输入的一段英文,为每个字符编制其相应的赫夫曼编码;并利用该编码为任意输入的0、1序列进行解码. 基本要求:一个完整的系统应具有以下功能: (1)初始化 从终端读入一段英文字符,统计每个字符出现的频率,建立赫夫曼树,并将该树存入某文件; (2)编码 利用建好的赫夫曼树对各字符进行编码,用列表的形式显示在屏幕上,并将编码结果存入另一文件中; (3)解码 利用保存的赫夫曼编码,对任意输入的0,1序列能正确解码; -Section for any input in Eng
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:12713
    • 提供者:何杰
  1. HuffmanTree

    0下载:
  2. 霍夫曼编码,c++实现一个对字符串建霍夫曼树并且进行霍夫曼编码。保存到文件里。-Huffman coding, c++ to implement a Huffman tree and build the string for Huffman coding. Saved to the file.
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:2640
    • 提供者:范荣琦
  1. 5901f92db5a9

    0下载:
  2. 一个完整的系统应具有以下功能: (1) I:初始化(Initialization)。从终端读入字符集大小n,以及n个字符和n个权值,建立赫夫曼树,并将它存于文件hfmTree中。 (2) E:编码(Encoding)。利用已建好的赫夫曼树(如不在内存,则从文件hfmTree中读入),对文件ToBeTran中的正文进行编码,然后将结果存入文件CodeFile中。 (3) D:译码(Decoding)。利用已建好的赫夫曼树将文件CodeFile中的代码进行译码,结果存入文件Textfil
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:230957
    • 提供者:mm
  1. Ed-hoffmann-decoder-

    0下载:
  2. 设计一个哈弗曼编译码器,功能如下: (1) 初始化:从终端读入字符集大小n,n个字符和n个权值,建立哈夫曼树,存入文件hfmTree (2) 编码:利用已建立好的哈夫曼树,对文件中的正文进行编码,存入文件CodeFile (3) 译码:利用已建立好的哈夫曼树将代码进行译码;或对目标正文编码,存入文件TextFile (4) 印代码文件:50个每行,存入文件CodePrin (5) 打印哈弗曼树:t同时将字符形式的哈弗曼树存入文件TreePrint -Design a Ha
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:15433
    • 提供者:黄建师
« 1 2 34 5 6 »
搜珍网 www.dssz.com