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

搜索资源列表

  1. Gain

    0下载:
  2. encoding and decoding using huffman
  3. 所属分类:matlab

    • 发布日期:2017-04-14
    • 文件大小:3394
    • 提供者:mostafa
  1. optimal-figure

    0下载:
  2. encoding and decoding using huffman
  3. 所属分类:matlab

    • 发布日期:2017-04-14
    • 文件大小:3021
    • 提供者:mostafa
  1. optimal

    0下载:
  2. encoding and decoding using huffman
  3. 所属分类:matlab

    • 发布日期:2017-04-10
    • 文件大小:1022
    • 提供者:mostafa
  1. huffmanencode

    0下载:
  2. 哈弗曼编码,给出输入文件content.txt,里面包含一段文字,编程实现上面选择的一种编码方法,将输入文件编码后的结果输出到encode.txt;读入上面编码后的结果encode.txt,编程实现解码过程(需要编码时的哈夫曼树,具体数据结构及保存自己设计),将解码后的结果输出到decode.txt;-The Haffuman encoding given input file content.txt, which contains a paragraph of text, and progra
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:38002
    • 提供者:jygb007
  1. huffmantree

    0下载:
  2. 哈夫曼编码,建立树形结构,通过每个节点的权值对每个节点进行0101标注,进行编码,类似于发电报时的编码。-Huffman coding, the establishment of the tree structure, and 0101 marked by the weight of each node for each node is encoded, similar to a telegram When encoding.
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:673664
    • 提供者:曹辉
  1. HuffCode

    0下载:
  2. Huffman coding is an entropy encoding algorithm used for lossless data compression. The term refers to the use of a variable-length code table for encoding a source symbol (such as a character in a file) where the variable-length code table has been
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-03-29
    • 文件大小:1025
    • 提供者:yashika
  1. JPEG

    0下载:
  2. 本程序实现简单JPEG压缩编码和解码功能。将一副64*64的灰度图进行JPEG压缩编码,编码过程包含DCT转换,量化,ZigZag扫描和游程编码。不包含DC分量的DPCM编码和最后的霍夫曼编码,但是基本实现了JPEG编码,具有较好的压缩率。-This procedure is simple JPEG compression encoding and decoding functions. This is a 64* 64 grayscale JPEG compression encoding p
  3. 所属分类:Special Effects

    • 发布日期:2017-04-01
    • 文件大小:888836
    • 提供者:hechao
  1. code

    0下载:
  2. 实现哈夫曼树的代码图像的编码解码归一化等处理,JEPG功能实现图像的算数编解码函数-Image encoding and decoding of the code that implements the Huffman tree owned by a processing
  3. 所属分类:Special Effects

    • 发布日期:2017-04-06
    • 文件大小:4439
    • 提供者:song
  1. hufman

    0下载:
  2. 实现哈夫曼树的建立,对输入字符窜进行哈弗曼编码,解码-Huffman tree establishment, Ha Fuman encoding, decoding
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:1145
    • 提供者:田喜鹏
  1. Huffmana-tree

    0下载:
  2. 从终端输入字母和相应的频率 在内存中构造Huffman树 从终端输入任意的单词 以二进制形式输出编码后的文字(在屏幕上显示0或1表示相应的位) -Huffman tree constructed in memory from the terminal enter the letters and the corresponding frequency from the terminal to enter any word on the screen text to binary f
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:21117
    • 提供者:
  1. d

    0下载:
  2. 用于输出哈夫曼树的权值表示和编码编码表示的-For the output of the Huffman tree weights and coding encoding said
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1515
    • 提供者:Allen_Gao
  1. final-proj1

    0下载:
  2. Adaptive Huffman coding just encoding with out decoding
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-05-24
    • 文件大小:4159513
    • 提供者:slava5000
  1. 312010

    0下载:
  2. 1.掌握二叉树的基本概念和性质 2.掌握创建和构造二叉链表的算法 3.掌握二叉树链表存储基础的的三种递归遍历算法和非递归算法。 4.掌握计算二叉树的结点、二叉树的深度和二叉树的叶子结点数等算法。 5.掌握huffman树的构造和编码。 实验要求:(1)理解二叉链表的初始化、二叉树空的判断;(2)理解二叉树的遍历算法,掌握其应用。 -A. Grasp the basic concepts and properties of the binary tree. Master t
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:20735
    • 提供者:刘国佳
  1. hoffman-encodeadecode

    1下载:
  2. 数据结构与算法的一个课程设计,内含实验报告。主要功能有: 用户可以执行的的功能有: (1)---选择读取某个源文件由系统解析建立哈夫曼树 (2)---手动输入字符集及其权值信息建立哈夫曼树 (3)---打印字符集的哈夫曼编码到屏幕 (4)---选择某个文本文件进行编码 (5)---选择某个代码文件进行译码 -Data structures and algorithms, a curriculum design, containing experimental r
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:709151
    • 提供者:liuqing
  1. mkjpeg.tar

    1下载:
  2. 用FPGA实现的JPEG编码器,可以直接使用,内含完成说明文档,经过验证无误。-• JPEG baseline encoding JPEG ITU-T T.81 | ISO/IEC 10918-1 • Standard JFIF header v 1.01 automatic generation • Color images only (3 components, RGB 24 or 16 bit, YUV input) • T
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2014-05-04
    • 文件大小:21650432
    • 提供者:
  1. hufuman

    0下载:
  2. 建立哈弗曼编码表,并进行哈弗曼编码, 采用c++语言实现-Havermann encoding tables, and Huffman coding using c++ language
  3. 所属分类:Other systems

    • 发布日期:2017-11-12
    • 文件大小:333660
    • 提供者:雷羽月
  1. R20090817e

    0下载:
  2. 远程桌面控制的客户端和服务端程序;对被控端桌面图像用用哈夫曼分块编码压缩,速度和图像质量都不错 -good -Client and server remote desktop control program using chunked encoding with Huffman compression on the host desktop image, speed and image quality are good-good
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-26
    • 文件大小:3396397
    • 提供者:坚定
  1. Huff_Compress

    0下载:
  2. 无损压缩算法:哈夫曼编码。哈夫曼算法的过程为:统计原始数据中各字符出现的频率;所有字符按频率降序排列;建立哈夫曼树:将哈夫曼树存入结果数据;重新编码原始数据到结果数据。-Lossless compression algorithms: Huffman coding. Huffman algorithm is the process: the original data in the statistical frequency of occurrence of each character al
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-05-28
    • 文件大小:11339980
    • 提供者:choonsa.miss
  1. haffumanlast

    0下载:
  2. 哈夫曼编码系统 设计任务:   从键盘输入一串电文字符能输出对应的哈夫曼编码。同时,能翻译由哈夫曼编码生成的代码串,输出相应的电文字符串。 设计要求:   (1)从终端读入字符集大小n,以及n个字符和n个权值,建立哈夫曼树及哈夫曼编码。   (2)利用已经建好的哈夫曼树,对输入的字符串进行编码,输出编码序列。   (3)利用已建好的哈夫曼树对输入的二进制编码进行译码,并输出结果。-Huffman coding system design tasks: from the
  3. 所属分类:Other systems

    • 发布日期:2017-11-07
    • 文件大小:1807
    • 提供者:heilunya
  1. hafuman

    0下载:
  2. 实现一个 huffman 编码系统,能够对传输报文进行编码,并且译码。-Achieve a huffman coding system, capable of transmission packets for encoding and decoding.
  3. 所属分类:software engineering

    • 发布日期:2017-12-03
    • 文件大小:1056530
    • 提供者:微眠眠
« 1 2 ... 32 33 34 35 36 3738 39 40 41 42 »
搜珍网 www.dssz.com