COS 226 Programming Assignment Checklist: Burrows-Wheeler Data Compression

Frequently Asked Questions

What program should I use for reading and writing the data? You must use BinaryStdIn.java and BinaryStdOut.java. These read and write sequences of bytes, whereas StdIn.java and StdOut.java read and write sequences of Unicode characters. These are in stdlib.jar.

My programs don't work properly with binary data. Why not? Be absolutely sure that you use only BinaryStdIn.java and BinaryStdOut.java for input and output. Also, be sure that you call BinaryStdOut.flush() or BinaryStdOut.close() after you are done writing (for an example see Huffman.expand().

Why does BinaryStdIn return the 8-bits as a (16-bit unsigned) char instead of as (an unsigned 8-bit) byte? The primitive type byte is a bit annoying in Java. When you operate on a byte, it is typically promoted to an int. E.g., to convert a byte b to a char c, you must write c = (char) (b & 0xff) instead of c = (char) b. By using char, we avoid the hassle.

In in the Burrows-Wheeler encoding, what order do I use when sorting the suffixes? The input is a sequence of extended ASCII characters (00 to FF), which you can read in with BinaryStdIn.readString(). You should sort the suffixes according to extended ASCII order, which is the natural order of the String data type.

How should I download the sample input files and reference solutions? Be careful to download them as binary files—some browsers will corrupt them if you view the file and use File -> Save. Do not edit them in a text editor—some editors will corrupt them by inserting bogus newline characters.

How can I compare the contents of two files (to check that the decoded version equals the original)? On OS X and Linux, use the command diff file1 file2; on Windows, use the command fc file1 file2.

How can I view the contents of a binary file? Use HexDump.java, as in the assignment. The command-line argument specifies the number of bytes per line to print.

How do I determine the sizes of the original and compressed files? Use HexDump.java, as in the assignment. Use a command-line argument of 0 to suppress all output except for the number of bytes.

How much time can my program take to run? The running time of each of your components should be linear or linearithmic in N (the number of characters in the message) and R (the alphabet size) on typical English text inputs. For example, Huffman compression takes time proportional to N + R log R (in the worst case) and Huffman expansion takes time proportional to N (in the worst case).

How much memory can my program consume? The Burrows-Wheeler encoder may use quite a bit, so you may need to use the -Xmx option when executing. You must use space linear in the input size N and alphabet size R. (Industrial strength Burrows-Wheeler compression algorithms typically use a fixed block size, and encode the message in these smaller chunks. This reduces the memory requirements, at the expense of some loss in compression ratio.) Therefore, depending on your operating system and configuration there may be some very large files for which your program will not have enough memory even with the -Xmx option.

How do I use gzip and bzip2 on Windows? It's fine to use pkzip or 7-zip instead.

I'm curious. What compression algorithm is used in PKZIP? In gzip? In bzip2? PKZIP uses LZW compression followed by the Shannon-Fano trees algorithm (an entropy encoder similar to Huffman). The Unix utility gzip combines a variation of LZ77 (similar to LZW) and Huffman coding. The program bzip2 combines the Burrows-Wheeler transform, Huffman coding, and a (fancier) move-to-front style rule.

Input, Output, and Testing

Input. Here are some sample input files. To fully test your program, you should also try to compress and uncompress binary files (e.g., .class or .jpg files).

Reference solutions. For reference, we have provided the output of compressing aesop.txt and us.gif. We have also provided the results of applying each of the three encoding algorithms in isolation. Note that the GIF file is a binary file and is already compressed.

Possible Progress Steps

These are purely suggestions for how you might make progress. You do not have to follow these steps.