In computer science and information theory, Huffman coding is an entropy encoding algorithm used for lossless data compression.
0
votes
1answer
30 views
Huffman Tree in Java
I have a problem with my Huffman tree code. In the main method I input a String of Symbols and I also input an Integer array containing the frequency of the Symbols. It should print out each Symbol ...
1
vote
1answer
70 views
huffman coding for a text file
This is only part of my huffman tree generated using ocaml. The tree is represented as (char*int list) list:
[(' ', [0]); ('e', [1; 0]); ('t', [1; 1; 0]); ('a', [1; 1; 1; 0]);
('o', [1; 1; 1; 1; ...
1
vote
1answer
38 views
python huffman coding Exception Unorderable Types
i am trying to write the huffman coding in Python 3 with the code from http://en.literateprograms.org/Huffman_coding_%28Python%29
but it doesn't work. If i run the code in Python 2.7, it works well.
...
0
votes
1answer
54 views
How to build the output encoded file using Huffman encoding algorithm?
I have a simple program which has in input a TXT file containing the string "Hello world" within. I just want to compress this file to have a gain of memory space. To do that, I have coded the huffman ...
1
vote
2answers
57 views
Fastest way to find a subset of strings in another string?
I am decoding a byte file made by huffman encoding, i turn the bytes into string and then search the values i have been given by the huffman tree. I have a hash table with the encode value and the ...
0
votes
1answer
35 views
Setting parents in tree
I have a huffman binary tree that starts with an empty node a.
A points to a left node and a right node, which also point to left and right nodes. Is it possible to set the parent nodes for each node ...
-2
votes
2answers
84 views
How do I create a sample text file with all 256 ASCII characters [closed]
I am writing a program for Huffman Coding. I need to feed in 10 files, each with 500-1000 characters containing all 256 ASCII characters atleast 1 time. How am I gonna do it? Are there sample files on ...
0
votes
1answer
54 views
Huffman Coding: handling negative ambiguity with zero
I've written a simple text file compressor that uses Huffman coding. I encode the text and write the binary resulting from Huffman to a file. To decode, I read in the binary and step through the ...
0
votes
1answer
53 views
What type of file should i store huffman results?
I have the tree, the encoded values for the every byte ,the encoded and decoding table, and my encoded file in a binary file for the encoded file, i have two questions, what should i store, only the ...
0
votes
0answers
26 views
generating a huffman tree
I am in the process of building the Huffman tree based on the codes that match the characters. Once I have the code, I pass it into this method below that will put the character in it right location ...
-1
votes
1answer
76 views
Huffman Algorithm is meant for what types of data?
I have been reading about this algorithm, and i understand building the tree, and what the output should be at the end of the tree process. All the examples are of text files, but for other types of ...
0
votes
1answer
72 views
How to store and subsequently decode Huffman table
I have a Huffman table from pixel intensities in an image. I need to store this in a binary file as in the DHT format for jpeg images. The receiver can then extract these values but I am at a loss how ...
0
votes
1answer
50 views
Binary String Representation to File and the to String again
I need to put binary in a file and then getting it back again, but i need to make it with the less amount possible of space use in the file ( example 16 bits = 2 bytes)
byte[] b = new ...
1
vote
2answers
89 views
Binary Tree Search & Tracking
I have a binary tree of node containing an integer and a char. I'm working on Huffman Coding and I want to get the binary presentation of the nodes. A '0' is appended to the string for every left ...
1
vote
3answers
87 views
compression algorithm for street names wanted
I have a list of millions of street names and want to compress them using a compression algorithm. I am not sure which algorithm would fit best. Most street names have common substrings in them, such ...
0
votes
0answers
64 views
Create a map of characters and their associated bitstrings from a huffman tree
I have coded the tree and now I am trying to traverse the tree and create a bitstring for each character and put these values into a map.
Here is my code so far:
map<char, string> ...
1
vote
1answer
75 views
Should I avoid multibit code starting with 0 (zero) for huffman code?
When I use Huffman greedy algorithm to construct the binary tree, I am getting the following, if all the four alphabets are equally probable:
00
01
10
11
The problem is, my program see 00 and 01 ...
0
votes
0answers
157 views
Huffman minimum variance coding
it is well known that Huffman code with minimum variance is preferable.
I've digged through entire Polish/English internet and this is what I found:
to build Huffman code with minimum variance you ...
2
votes
2answers
392 views
Bit Array to String and back to Bit Array
Possible Duplicate Converting byte array to string and back again in C#
I am using Huffman Coding for compression and decompression of some text from here
The code in there builds a huffman tree to ...
0
votes
2answers
172 views
DCT based Video Encoding Process
I am having some issues that I am hoping you will be able to clarify. I have self taught myself a video encoding process similar to Mpeg2. The process is as follows:
Split an RGBA image into 4 ...
3
votes
1answer
97 views
How to advance past a deflate byte sequence contained in a byte stream?
I have a byte stream that is a concatenation of sections, where each section is composed of a header plus a deflated byte stream.
I need to split this byte stream sections but the header only ...
0
votes
1answer
265 views
Calculating Huffman code length in Matlab [closed]
I've written a function that accepts a vector, and is supposed to return the length of the Huffman encoding. Unfortunately, it is not working. And I don't know why, really. Here is the code:
function ...
0
votes
1answer
134 views
Constructing a Binary Tree from a file
I have a Binary Tree file formatted like so:
121
00
99
010
120
011
97
10
98
11
Where it's formatted like (ascii val) over (traversal code). 0 = left one, 1 = right one
So the ascii value 121 would ...
0
votes
1answer
149 views
Popping/deleting nodes from a Huffman Tree Minheap
I'm having trouble popping correctly from a Huffman Tree. Right now I am creating a Huffman Tree based off a minheap and I want to do the following:
If we assume A and B to be two different subtrees, ...
1
vote
0answers
108 views
Reading a file bit by bit to form a Huffman Coding Tree
This problem requires me to read a header from a file, that is a bit based compress file, to extract the necessary information that I need in order to form the tree. Normally the head looks as such: ...
0
votes
1answer
84 views
Huffman decompresion
Well i'm trying to implement function which will decide if given tree match to compressed file, well 'trying' is little "misrepresentation" i just dont know how to implement such functionality.
I ...
1
vote
0answers
174 views
traversing huffman tree
So I'm having a problem with traversing my huffmann tree and finding the code for the path to each char. Basically what i did is this: I used a FileReader to read the file, get each byte and then ...
1
vote
1answer
235 views
Decoding a message with Huffman tree
When I send a string of bits to be decoded, it seems to require one additional bit to decode properly. I've printed out the tree in pre-order, and I've drawn the tree on paper to make sure I wasn't ...
0
votes
0answers
69 views
Joining Trees in huffman coding
we have animationhttp://upload.wikimedia.org/wikipedia/commons/a/ac/Huffman_huff_demo.gif
well i cant understand it.
In huffman algorith we have to join two trees with lowest posiblitiy in first step ...
2
votes
2answers
290 views
What is wrong with this code? Huffman encoding
In this bit of code, i am attempting to split a string into Characters and place each character into a map. If the same Character appears more than once I put a counter on it and place it back into ...
6
votes
1answer
216 views
PHP Efficient way to Convert String of Binary into Binary
here is the skinny (scroll down to see the problem): I am doing Huffman Encoding to compress a file using PHP (for a project). I have made the map, and made everything into a string like so:
...
1
vote
1answer
145 views
Could anyone tell me why my code for this Huffman encoding algorithm is producing an error?
I have a Huffman Tree, and a character, and I want to return what that character's encoding within the Huffman Tree should be.
I've implemented it using the breadth-first traversal method, and each ...
0
votes
2answers
67 views
Could anyone tell me why my code is producing an error?
I have a Huffman Tree, and a character, and I want to return what that character's encoding within the Huffman Tree should be.
I've implemented it using the breadth-first traversal method, and each ...
4
votes
1answer
255 views
Why is my probability so far off with this Binary Tree using?
It's basically just an implementation of the Huffman Coding algorithm, but when I check the probability of the end BinaryTree (the only item in the queue left) it's grossly high.
// Make a BinaryTree ...
0
votes
1answer
298 views
Huffman Coding - Dealing with unicode
I've implemented a Huffman coding in java, that works on byte data from an input file. However, it only works when compressing ascii. I'd like to extend it so that it can deal with characters that are ...
2
votes
2answers
253 views
Approximate Order-Preserving Huffman Code
I am working on an assignment for an Algorithms and Data Structures class. I am having trouble understanding the instructions given. I will do my best to explain the problem.
The input I am given is ...
0
votes
0answers
271 views
Looking for a working example of canonical huffman code [closed]
I posted this question earlier on:
Compressing text with good spelling, and canonical huffman code
I'm still looking for a working canonical huffman encoder. Since it still requires a huffman tree, ...
1
vote
1answer
189 views
Compressing text with good spelling, and canonical huffman code
I want to compress text by using words as symbols instead of characters, I don't really know if it's a good idea, but I just want to test it (for science).
The problem is, I can't really store all ...
0
votes
1answer
218 views
Lossless compression theory, is compression ratio based on size of pattern and times repeated?
I was wondering which of the following scenarios will achieve the highest ratio with lossless algorithms applied to binary data with repeated data.
Am I correct to assume the compression ratio ...
2
votes
1answer
80 views
function wont accept iterator to auto_ptr
I wrote some flawed Huff compression code that I was trying to fix. The first thing I did was to switch the pointers to auto_ptr (There are reasons I didn't use another smart pointer). I create a ...
1
vote
1answer
273 views
What is the advantage of a full binary tree for Huffman code?
I am studying Huffman code for bit encoding a stream of characters and read that an optimal code would be represented by a full binary tree where each distinct character is represented by a leaf and ...
2
votes
3answers
233 views
How do generate this Huffmann Tree (similar to binary trees)
I understand how to create Huffmann trees when the frequencies are different to each other but how would I draw this huffmann tree if few of the frequencies are the same:
simple explanation of the ...
3
votes
3answers
508 views
Huffman encoding
Under what conditions does Huffman encoding make a string not compressible? Is it when all the characters appear with equal frequency/probability? And if so, how can one show this is true?
0
votes
1answer
2k views
Reconstuct Huffman Tree for Decoding [Solved]
I have encodings for compressed string data using Huffman Compression
i.e "more money needed"
Encoding
\n 0110
1011
d 100
e 11
m 001
n 000
o 010
r 0111
y 1010
**
...
0
votes
1answer
153 views
C++ for_each loop can't find pointed to map element
I'm building a huffman coding program and when I try and run the code I have so far it just gives me a warning that the freq map object .begin() doesn't exist.
Huff.h
#ifndef HuffPuff_Huff_h
#define ...
0
votes
1answer
2k views
Create image from Huffman code - Matlab
I have a project about image compression in Matlab. So far i have successfully implemented Huffman encoding to the image which gives me a vector of binary codes. After that i run Huffman decoding and ...
0
votes
1answer
860 views
Matlab Huffman Encoding in matrix
I am trying to encode a matrix that i have (after calculating frame differences) with Huffman code but i am having difficulties completing it
The matrix i wish to encode with huffman is called "amp"
...
0
votes
2answers
2k views
MATLAB - image huffman encoding
I have a homework in which i have to convert some images to grayscale and compress them using huffman encoding. I converted them to grayscale and then i tried to compress them but i get an error. I ...
0
votes
2answers
72 views
Corner case in Huffman Algorithm
I am trying to solve by hand two different scenarios of compression via Huffman algorithm, In each one of them, we start with an ordered queue that contains tuples (symbol, frequency) as its items, ...
-1
votes
2answers
717 views
huffman algorithm
I'm making a program on the HUFFMAN ALGORITHM where I have one class of nodes (hnode) to contain the symbol (name) and its frequency of occurence (freq); and other class (pq) which is used to form the ...

