Huffman encoding is a lossless compression algorithm that is optimal, assuming all input characters are drawn from a known discrete distribution.
0
votes
1answer
35 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 ...
0
votes
1answer
48 views
Should Huffman compression be in strict order of frequency?
I'm just testing where I've got to on a Huffman encoding exercise. My test file has a lot of low frequency chars (mostly frequency of 1) and a low number of high frequency chars. I'm testing what's ...
-1
votes
0answers
36 views
huffman coding for compression in 8086 [closed]
Hi I am working on a code to compress a file using huffman coding in 8086. I am unsure how to make the code to build the tree, my prof explained huffman using the tree diagram and a table of arrays of ...
1
vote
2answers
57 views
Huffman coding is based on what Greedy Approach or Dynamic Programming
Can we solve Problem of Huffman Coding by using Dynamic Programming, Is there any algorithm
4
votes
1answer
85 views
Java loop and shifting
To cut a long story short, I'm trying to generate Huffman codes from a canonical Huffman list. Essentially, the following two loops should run, and generate a binary string. The code is:
for (int i ...
0
votes
1answer
40 views
Does a Huffman Binary Tree have to be proper?
All the examples I could find for Huffman coding have had an even number of chars to work with. If it is an odd number of chars can the last internal node added to the tree just have a single child ? ...
1
vote
1answer
41 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
0answers
21 views
Correct Bit reader?
This is a homework question from an assignment earlier this semester. I'm trying to study for my final coming up now.
The program involves decoding a huffman tree from a file. The format for the ...
0
votes
0answers
41 views
Huffman decoding EOF character hitting NullPointerException
Hi I am working on decoding a file compressed using huffman encoding. We are using EOF characters to indicate we are done with decompressing. Whenever I code for an EOF characters I hit a ...
2
votes
2answers
74 views
Splitting sequence of 1's and 0's into byte
I am currently working on huffman decoding. I have a String representation of all the character encodings(i.e "1101000100000001"). I am trying to split it into groups of 8 and return its corresponding ...
0
votes
1answer
36 views
Attribute binary code as the path from binary tree in Python
How can I attribute a binary code to a symbol, based on their path within a binary tree? In other words, a dictionary.
Example of a tree:
tree=[['a', 'p'], [[['n', 'u'], 'o'], ' ']]
or if you ...
0
votes
1answer
61 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 ...
0
votes
1answer
131 views
How to compress a string of 0s and 1s in java
I am doing Huffman Coding right now and I ran into this bump in the road. I have pretty much everything done but this one part. My main issue right now is I am not sure how to store my binary string ...
1
vote
1answer
48 views
Decoding bit sequence by iterating a tree
phrase='hello overflow'
sequence='00100011101010000110101011000110110100'
tree=[
[
[
[' ', 'f'],
['h', 'r']
],
[
['w', 'v'],
...
1
vote
2answers
83 views
Writing large binary data to file
Hi I am working on a project on writing our own huffman coding. I am currently having trouble writing the binary 1's and 0's to an output file. It works with smaller input files but for very large ...
0
votes
1answer
22 views
How to read each character from a BitInputStream when the number of bits varies per character
I apologize, it wouldn't let me tag homework.
Hello there, I'm working on a school project using Huffman coding to compress data from a file. In this assignment, you are supposed to read from a file ...
3
votes
2answers
88 views
What is a faster way of compressing this data?
I have a program that computes a ton of data and writes it to a file. My data is just a bunch of numbers from 0-16 (17 different values), and I have computed the frequency that each number appears in ...
0
votes
1answer
52 views
Huffman coding error
I am trying to implement the Huffman coding algorithm.
I have written the following code
def make_leaf(symbol,weight):
return (symbol,weight)
def is_leaf(x):
return isinstance(x,tuple) and ...
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 ...
0
votes
0answers
74 views
How can i read any kind of file using Huffman Algorithm? [closed]
I have implemented Huffman algorithm, i`m using java, so i had the idea of reading bytes from a file so that i can compress any type of file, using a FileInputStream, and the Huffman tree was made of ...
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 ...
-1
votes
1answer
80 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 ...
1
vote
1answer
136 views
Huffman Tree in Haskell
I am really new in Haskell and I am trying to create a Huffman Tree and I can't figure it out how until the end.
My definition for the tree looks like this: data HuffTree = Node Int HuffTree HuffTree ...
0
votes
1answer
75 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
40 views
What am I doing wrong with the TreeMap<node>?
I am trying to write a program that will utilize the Huffman code. However, when I use the tree set, it wants the parameters of "Char, Integer". I want it to take in a "String, Integer" parameter. ...
0
votes
1answer
443 views
Dynamic Programming:optimal Binary search tree and Huffman
Is it possible to construct an optimal Binary search tree (OBST) via a greedy algorithm instead of with Dynamic Programming (DP) (for example Huffman's algorithm)? If so why is DP is preferred in the ...
0
votes
0answers
24 views
Exploiting redundancy among JPG images
I wish to exploit redundancy among a set of similar colored JPG images. Set redundancy compression has been used successfully for similar 8-bit grayscale images. They basically find the MAX and MIN of ...
3
votes
1answer
333 views
Huffman Tree with Given Frequency Confuse as how to start? Java
I’m trying to understand what to do with my homework problem. I am trying to create a Huffman Tree that will encode and decode messages in Java. I am given Strings and Frequency.
[a=10, b=15, c=12, ...
0
votes
1answer
51 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
3answers
131 views
C++, Storing a String containing binary into a text file
I am currently attempting to store a string containing binary code.
When I attempt to write this string to a text file it simply stores each 0 and 1 character in a string format, rather than storing ...
-1
votes
1answer
107 views
Java BitSets writing to file [duplicate]
I am working on Huffman Compression algorithm. I have the code for each character. For example
f=1100
d=111
e=1101
b=101
c=100
a=0
Now in order to achieve compression I need ...
-1
votes
1answer
102 views
I have created the huffman tree but im having issues in generating the codes out ouf it [closed]
Here is my function, i seed it with the root node of my tree and a character to be found inside the tree. It successfully returns me the alphabet to be searched but it does not give me the path to ...
0
votes
1answer
99 views
merging dotted pairs into a huffman tree
I have a procedure called make-leaf-set which creates leaf-nodes and another procedure that sorts the lowest first-high.
(define (make-leaf-set pairs)
(if (null? pairs)
'()
(let ((pair ...
0
votes
1answer
216 views
Huffman Tree Creation C++
I have a class Node which has Node *left and Node *right as the variables. Now I have a function to build the huffman tree as follows
int x = pQueue.size();
for(int i=0;i<x-1;i++){
Node *z = ...
1
vote
1answer
92 views
get pairs out of a huffman tree
I'm trying to write a procedure Huffman-leaves; the procedure returns a list of pairs from a created huffman tree.
Example on how it runs
(huffman-leaves sample-tree)
->((A . 8) (C . 5) (B . ...
1
vote
1answer
65 views
Efficient compression and representation of key value pairs to be read from 1D barcodes
I'm currently writing an application for Windows Mobile which needs to be able to pick up key value pairs from 1D barcodes (configuration settings). The less barcodes need to be scanned, the better. ...
1
vote
0answers
42 views
Triple Nested For Loop / Huffman Decoding of a String using a codebook cell array in MatLab
Im confused here. coded_msg is a long string of 1s and 0s. Codewords is a cell array of codewords of varying lengths (i.e. codewords(1) = 10010, codewords(2) = 101, etc). What I am trying to do is to ...
1
vote
2answers
110 views
Huffman node and NullPointerException
I'm getting a NullPointerException and i can't figure out why it occurs, maybe someone with a fresh point of view could help me to get rid of it !
The error occurs at line 53 :
...
0
votes
2answers
297 views
Storing and reconstruction of Huffman tree
What is the best way to dehydrate a huffman tree, by dehydration I mean given a huffman tree, and the characters in each leaf, how can you efficiently store the structure of this tree, and later ...
1
vote
2answers
108 views
Recursive Tree Traversal, returning a variable for each leaf of the tree
I have a huffman binary tree. I need to traverse down the tree till I get to each leaf, and for each leaf, I need to "save" a member of that leaf node, and keep all those variables in an array outside ...
1
vote
1answer
144 views
Encoding Huffman in C and decoding the same in javascript
The scenario of my problem:
Some data in a file that should be compressed to smaller size.
The content of this file is required by the HTML on the fly by using the javascript.
So basically i need to ...
0
votes
0answers
89 views
Creating a Huffman Tree in PHP
I am trying to create a Huffman Tree using PHP.
This is what I have:
<!DOCTYPE html>
<html>
<body>
<?php
$extract = 'Lorem ipsum dolor sit amet, ...
1
vote
1answer
76 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
158 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 ...
1
vote
1answer
171 views
Last byte in Huffman compression
I am wondering about what is the best way to handle the last byte in Huffman Copression. I have some nice code in C++, that can compress text files very well, but currently I must write to my coded ...
0
votes
1answer
53 views
Should I Huffman Encode a single frame, a colour channel of that frame or an 8x8 macroblock?
Further to my question a couple of days ago about the DCT based Video Encoding Process
I have DCT, quantization, zigzag and RLE steps that seem to be outputting sensible values so I now need to know ...
2
votes
1answer
173 views
How is this Huffman Table created?
I have a table that shows the probability of an event happening.
I'm fine with part 1, but part 2 is not clicking with me. I'm trying to get my head around how
the binary numbers are derived in part ...
0
votes
2answers
285 views
Reconstruct huffman tree by huffman table
I have written a program to encoded a article to huffman code and output a code table.
H:000
d:1011
e:100
l:11
o:01
r:1010
w:001
Total bits:27
Encoded code:000100111101001011010111011
and I want ...
0
votes
0answers
294 views
Writing Node class for huffman code using heap, having difficult on basics of it
I am writing a huffman encode/decode program that takes a file with text in it that encodes it and then decodes it. As of right now My problem is writing the program I am calling "hnode.h" and ...
0
votes
0answers
155 views
writing huffman code with making hnode.cc/hnode.h
I am making a huffman code using 6 probgrams: encode, decode, then I am using heaps(heap.cc, heap.h) and then I also have a program called hnode(hnode.cc and hnode.h).
My heap.h
#ifndef HEAP_H
...


