Tagged Questions

0
votes
4answers
42 views

Segmentation Fault - Adaptive Huffman Tree

I am trying to implement the adaptive huffman code, but while trying to build the tree i get a segmentation fault when executing the code at line "currentNYT->lchild = newNYT;" in …
0
votes
1answer
111 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 …
0
votes
5answers
81 views

Input string compressed as string

Hi, I want to compress/transform a string as new string. i.e.: input string: USERNAME/REGISTERID output string after compress: <some-string-in-UTF8-format> output str …
0
votes
2answers
197 views

Efficient Huffman tree search while remembering path taken

As a follow up question related to my question regarding efficient way of storing huffman tree's I was wondering what would be the fastest and most efficient way of searching a bin …
1
vote
1answer
191 views

Burrows-Wheeler Move to Front

For a project that I'm working on, I need to implement Burrows-Wheeler's MoveToFront transformation in O(n) space. For some reason, though, my code works on most values that I thro …
1
vote
2answers
202 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 (t …
2
votes
6answers
445 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 itsel …
4
votes
4answers
779 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 …
5
votes
5answers
256 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 …
0
votes
2answers
613 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 provide …
1
vote
5answers
307 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 01 …
1
vote
4answers
397 views

need help on how to encode words using huffman code

how do you encode words using the huffman code such as NEED