Tagged Questions
David A. Huffman created Huffman Code while pursuing a Ph.D at MIT in 1952
9
votes
4answers
4k views
Efficient way of storing Huffman tree
I am writing a Huffman encoding/decoding tool and am looking for an efficient way to store the Huffman tree that is created to store inside of the output file.
Currently there are two different ...
7
votes
1answer
457 views
Is it possible to achieve Huffman decoding in GPU?
We have a database encoded with Huffman coding. The aim here is to copy on the GPU it with its associated decoder; then on the GPU, decod the database and do stuff on this decoded database without ...
7
votes
8answers
544 views
C++ Structure within itself?
I've been trying to port this code to python, but there is something I do not quite understand in C++ (I do know a bit of C++ but this is beyond me):
typedef struct huffnode_s
{
struct huffnode_s ...
6
votes
5answers
3k views
How to decode huffman code quickly?
I have implementated a simple compressor using pure huffman code under Windows.But I do not know much about how to decode the compressed file quickly,my bad algorithm is:
Enumerate all the huffman ...
5
votes
2answers
402 views
Confused about Huffman Trees
A quick tutorial on generating a huffman tree
Confused about Huffman Trees. Near the end of that link above, it shows the tree with 2 elements left, and then the completed tree. I'm confused about ...
5
votes
5answers
784 views
huffman encoding
hiii...
I am trying to implement the huffman algorithm for compression..
for that I have to write bits of variable length to a file..
is there any datatype in c++ to store bits in a file????
i tried ...
4
votes
3answers
157 views
Measuring efficiency of Huffman coding with Python bitstring
I have the following string that I would like to Huffman-encode and store efficiently into a bit array:
>>> print sequence
GTCAGGACAAGAAAGACAANTCCAATTNACATTATG|
The frequencies of the ...
4
votes
2answers
121 views
Compressing strings with common parts
I have an application that manages a large number of strings. Strings are in a path-like format and have many common parts, but without a clear rule. They are not paths on the file-system but can be ...
4
votes
2answers
178 views
Condition for single bit code for a character in Huffman code?
This is a question I ran into in school settings, but it keeps bugging me so I decided to ask it here.
In Huffman compression, fixed-length sequences (characters) are encoded with variable-length ...
4
votes
3answers
448 views
How could I do frequency analysis on a string without using a switch
I am working a school project to implement a Huffman code on text. The first part of course requires a frequency analysis on the text. Is there a better way aside from a giant switch and an array of ...
4
votes
1answer
408 views
Decoding a compressed short string; uncertain on compression used - Updated
I have a program that is compressing a string in an unknown way. I know a few inputs and the output produced, but I am not sure what is being used to compress the string.
Here are my examples.
(just ...
3
votes
1answer
190 views
Huffman encoding: how to write binary data in Python
I have tried methods using the struct module, as shown by the lines commented out in my code, but it didn't work out. Basically I have two options: I can either write the binary data code by code (my ...
3
votes
2answers
206 views
How to force haskell to don't store whole bytestring?
I writing a small (relatively) application on haskell in academic purpose. I'm implementing a Huffman compression, based on this code http://www.haskell.org/haskellwiki/Toy_compression_implementations ...
3
votes
1answer
202 views
Optimized order of HTML attributes for compression
I read somewhere that organizing HTML attributes in a certain order can improve the rate of compression for the HTML document. (I think I read this from Google or Yahoo recommendation for faster ...
3
votes
4answers
472 views
Java - Need help with binary/code string manipulation
For a project, I have to convert a binary string into (an array of) bytes and write it out to a file in binary.
Say that I have a sentence converted into a code string using a huffman encoding. For ...
3
votes
1answer
2k views
Decoding a JPEG Huffman block (table)
The following block is nested by Huffman block markers
-HUFF---------------------------------------------------------------------0084-
10 0 1 2 4 3 4 6 5 6 8 a 9 ...
3
votes
9answers
1k views
Huffman compression algorithm
I've implemented file compression using huffman's algorithm, but the problem I have is that to enable decompression of the compressed file, the coding tree used, or the codes itself should be written ...
3
votes
4answers
1k views
need help on how to encode words using huffman code
how do you encode words using the huffman code such as NEED
2
votes
1answer
78 views
How to compress an alphabet consisting of DNA sequence
I want to compress a DNA sequence with a compression technique rather than Huffman and Adaptive Huffman algorithm, i'm using c# as a programming language.
can anyone lead me to an algorithm.
Note: I ...
2
votes
1answer
56 views
How to do Huffman encoding of base 3
I have a problem in my program implement Huffman encoding.
In base 2, I use a binary tree to store codeword, but I don't know how to deal with base 3.
I'm trying to use a trinary tree, but don't know ...
2
votes
3answers
83 views
Converting a String representation of bits to a byte
I'm just beginning to learn about file compression and I've run into a bit of a roadblock. I have an application that will encode a string such as "program" as a compressed binary representation ...
2
votes
6answers
212 views
Algorithm to Generate 'n' Binary Prefix Codes
A Prefix Code is a set of codes such that no code is a prefix of another code. For example, the following set is a prefix code:
10
11
000
001
0100
0101
0110
0111
With n = 8 members. I think these ...
2
votes
1answer
121 views
Huffman Decoding Sub-Table
I've been trying to implement a huffman decoder, and my initial attempt suffered from low performance due to a sub-optimal choice of decoding algorithm.
I thought I try to implement huffman decoding ...
2
votes
1answer
287 views
huffman algorithm in python
HI!
Could anybody say how to fix the problem in the Huffman algorthm (if put together all the parts) from this Internet site:
...
2
votes
1answer
331 views
Steps to compress a file using Huffman Code
I know there are many questions involving Huffman Code, including another one from myself, but I am wondering what would be the best way to actually encode a text file. Decompression seems trivial; ...
2
votes
2answers
240 views
What is the most efficient(*) of building a canonical huffman tree?
Assume A is an array where A[0] holds the frequency of 0-th letter of the alphabet.
What is the most efficient(*) way of calculating code lengths? Not sure, but I guess efficiency can be in terms of ...
2
votes
2answers
324 views
2
votes
2answers
2k views
Lossless compression method to shorten string before base64 encoding to make it shorter?
just built a small webapp for previewing HTML-documents that generates URL:s containing the HTML (and all inline CSS and Javascript) in base64 encoded data. Problem is, the URL:s quickly get kinda ...
2
votes
2answers
1k views
Building a Huffman tree
I've been working on this Huffman tree builder:
// variable al is an array list that holds all the different characters and their frequencies
// variable r is a Frequency which is supposed to be the ...
2
votes
5answers
1k views
Huffman Tree Encoding
My Huffman tree which I had asked about earlier has another problem! Here is the code:
package huffman;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.util.ArrayList;
...
2
votes
2answers
494 views
I don't understand this Huffman algorithm implementation
template<class T>
void huffman(MinHeap<TreeNode<T>*> heap, int n)
{
for(int i=0;i<n-1;i++)
{
TreeNode<T> *first = heap.pop();
...
2
votes
3answers
314 views
Priority Queue Wrong Order
I am programming the huffman encoding. This is the beginning of my program:
using namespace std;
//Counting methods
int *CountCharOccurence(string text)
{
int *charOccurrence = new int[127];
...
2
votes
3answers
306 views
After I build my Huffman tree the root's weight is 700k when I've read through 5megs of data
// Huffman Tree.cpp
#include "stdafx.h"
#include <iostream>
#include <string>//Necessary to do any string comparisons
#include <fstream>
#include <iomanip>
#include ...
2
votes
3answers
669 views
anyone know how to decode huffman tree?
is there better way than just go left or right based on the input digit 0 or 1?
2
votes
2answers
545 views
Extended Huffman code
I have this homework: finding the code words for the symbols in any given alphabet. It says I have to use binary Huffman on groups of three symbols. What does that mean exactly? Do i use regular ...
2
votes
2answers
964 views
Need help on BMP to JPEG conversion
I'm writing a C++ program to convert a BMP image into a JPEG.
Here's the basic algorithm I'm trying to follow:
Convert RGB color space to Y,Cb,Cr..
Down sample Cb and Cr by 2 (that means for each ...
2
votes
2answers
3k views
How to create Huffman tree from FFC4 (DHT) header in jpeg file?
I thought I could work this one out myself but I don't seem to be moving forward at all.
Ok, the background:
I need to create a Huffman tree of codes from the information provided by the FFC4, DHT ...
2
votes
5answers
784 views
How best to search binary data for variable length bit strings?
Can anyone tell me the best way to decode binary data with variable length bit strings in java?
For example:
The binary data is 10101000 11100010 01100001 01010111 01110001 01010110
I might ...
1
vote
1answer
98 views
Matlab, Image compression
i am unsure about what this is asking me to do in matlab? what does it mean to encode? what format should the answer be? can anyone help me to work it out please?
Encode the 8x8 image patch and print ...
1
vote
1answer
70 views
Generating AC elements from jpeg file
I'm decoding jpeg file. I have generated huffman tables, and quantization tables, and I have reach the point where I have to decode DC and AC elements. For example lets say I have next data
FFDA 00 ...
1
vote
1answer
70 views
Parsing jpeg file, SOS marker
I'm having problem with parsing jpeg file. When I hit SOS (start of scan) marker, there are few bytes which meaning I don't understand. In picture bellow, after SOS marker, there are 2 bytes for ...
1
vote
1answer
153 views
Huffman Encoding Algorithm giving strange tree (Java)
I've been trying a lot of different things here and can't seem to get it to work. The input was "abbcccddddeeeee", which gives a linked list a, b, c, d, e with frequencies 1, 2, 3, 4, 5, ...
1
vote
6answers
273 views
Are algorithms like Huffman coding actually used in production?
Background (not pertinent to the question)
Now, I'm sure this sounds like a pretty naïve question, but it probably won't sound that way if you understand where I'm coming from. I have had years of ...
1
vote
2answers
107 views
JT file format : Building huffman tree
I am trying to read a JT File.
JT file may have information which is compressed by using Huffman Algorithm.
I am facing a problem while building the Huffman tree.
There's an ambiguity in the ...
1
vote
4answers
682 views
Huffman coding in Java
I want encode every file by Huffman code.
I have found the length of bits per symbol (its Huffman code).
Is it possible to encode a character into a file in Java: are there any existing classes that ...
1
vote
3answers
322 views
Build a huffman tree in scheme
I'm suffering with this problem for a few days now. How can you build a tree with the data as specified on the following site:
http://www.impulseadventure.com/photo/jpeg-huffman-coding.html, under ...
1
vote
4answers
338 views
Fast search in compressed text files
I need to be able to search for text in a large number of files (.txt) that are zipped. Compression may be changed to something else or even became proprietary.
I want to avoid unpacking all files and ...
1
vote
2answers
342 views
Huffman trees for non-binary alphabets?
Is there an easy generalization of Huffman coding trees for situations where the resulting alphabet is not binary? For instance, if I wanted to compress some text by writing it out in ternary, I ...
1
vote
2answers
222 views
Huffman “terminator” bitstring
Motivation
Imagine a huffman compressed file that gets downloaded partially, like in P2P software, so we allocate disk space for the whole file first and then start downloading random file chunks. ...
1
vote
3answers
344 views
Outputting bit data to binary file C++
I am writing a compression program, and need to write bit data to a binary file using c++. If anyone could advise on the write statement, or a website with advice, I would be very grateful.
Apologies ...