5.5 Data Compression
Total Page:16
File Type:pdf, Size:1020Kb
5.5 Data Compression ‣ basics ‣ run-length coding ‣ Huffman compression ‣ LZW compression Algorithms, 4th Edition · Robert Sedgewick and Kevin Wayne · Copyright © 2002–2010 · February 8, 2011 2:50:01 PM Data compression Compression reduces the size of a file: • To save space when storing it. • To save time when transmitting it. • Most files have lots of redundancy. Who needs compression? • Moore's law: # transistors on a chip doubles every 18-24 months. • Parkinson's law: data expands to fill space available. • Text, images, sound, video, … “ All of the books in the world contain no more information than is broadcast as video in a single large American city in a single year. Not all bits have equal value. ” — Carl Sagan Basic concepts ancient (1950s), best technology recently developed. 2 Applications Generic file compression. • Files: GZIP, BZIP, BOA. • Archivers: PKZIP. • File systems: NTFS. Multimedia. • Images: GIF, JPEG. • Sound: MP3. • Video: MPEG, DivX™, HDTV. Communication. • ITU-T T4 Group 3 Fax. • V.42bis modem. Databases. Google. 3 Lossless compression and expansion uses fewer bits (you hope) Message. Binary data B we want to compress. Compress. Generates a "compressed" representation C (B). Expand. Reconstructs original bitstream B. Compress Expand bitstream B compressed version C(B) original bitstream B 0110110101... 1101011111... 0110110101... Basic model for data compression Compression ratio. Bits in C (B) / bits in B. Ex. 50-75% or better compression ratio for natural language. 4 Food for thought Data compression has been omnipresent since antiquity: • Number systems. • Natural languages. • Mathematical notation. has played a central role in communications technology, • Braille. • Morse code. • Telephone system. and is part of modern life. • MP3. • MPEG. Q. What role will it play in the future? 5 ‣ basics ‣ run-length coding ‣ Huffman compression ‣ LZW compression 6 Data representation: genomic code Genome. String over the alphabet { A, C, T, G }. Goal. Encode an N-character genome: ATAGATGCATAG... Standard ASCII encoding. Two-bit encoding. • 8 bits per char. • 2 bits per char. • 8 N bits. • 2 N bits. char hex binary char binary A 41 01000001 A 00 C 43 01000011 C 01 T 54 01010100 T 10 G 47 01000111 G 11 Amazing but true. Initial genomic databases in 1990s did not use such a code! Fixed-length code. k-bit code supports alphabet of size 2k. 7 664 CHAPTER 6 Q Strings Binary input and output. Most systems nowadays, including Java, base their I/O on Q 664 CHAPTER8-bit bytestreams, 6 Strings so we might decide to read and write bytestreams to match I/O for- mats with the internal representations of primitive types, encoding an 8-bit char with 1 byte, a 16-bit short with 2 bytes, a 32-bit int with 4 bytes, and so forth. Since bit- streams are the primary abstraction for data compression, we go a bit further to allow Binary input and output. Most systems nowadays, including Java, base their I/O on clients to read and write individual bits, intermixed with data of various types (primi- Reading and writing8-bit bytestreams, binary so wedata might decide to read and write bytestreams to match I/O for- tive types and String). The goal is to minimize the necessity for type conversion in mats with the internal representations of primitive types, encoding an 8-bit char with client programs and also to take care of operating-system conventions for representing 1 byte, a 16-bit short with 2 bytes, a 32-bit int with 4 bytes, and so forth. Since bit- data.We use the following API for reading a bitstream from standard input: Binary standardstreams input are the and primary standard abstraction output.for data compression, Libraries we go toa bit read further and to allow write bits clientspublic to readclass and BinaryStdIn write individual bits, intermixed with data of various types (primi- from standardtive input types and and String to ).standard The goal is to output. minimize the necessity for type conversion in boolean readBoolean() read 1 bit of data and return as a boolean value client programs and also to take care of operating-system conventions for representing data.Wechar use thereadChar() following API for readingread 8 bits a bitstream of data and from return standard as a char input: value publicchar classreadChar(int BinaryStdIn r) read r bits of data and return as a char value boolean[similar methodsreadBoolean() for byte (8 bits); shortread 1 (16 bit bits);of data int and (32 return bits); longas a boolean and double value (64 bits)] booleanchar readChar()isEmpty() readis the 8 bitstreambits of data empty? and return as a char value void close() char readChar(int r) readclose r the bits bitstream of data and return as a char value API for static methods that read from a bitstream on standard input [similar methods for byte (8 bits); short (16 bits); int (32 bits); long and double (64 bits)] Aboolean key featureisEmpty() of the abstraction is isthat, the bitstreamin marked empty? constrast to StdIn, the data on stan- dard voidinput isclose() not necessarily alignedclose on the byte bitstream boundaries. If the input stream is a single byte, a client could read it 1 bit at a time with 8 calls to readBoolean(). The close() API for static methods that read from a bitstream on standard input method is not essential, but, for clean termination, clients should call close() to in- dicate that no more bits are to be read. As with StdIn/StdOut, we use the following A key feature of the abstraction is that, in marked constrast to StdIn, the data on stan- complementary API for writing bitstreams to standard output: dard input is not necessarily aligned on byte boundaries. If the input stream is a single byte,public a client class could BinaryStdOut read it 1 bit at a time with 8 calls to readBoolean(). The close() method is not essential, but, for clean termination, clients should call close() to in- void write(boolean b) write the speci!ed bit dicate that no more bits are to be read. As with StdIn/StdOut, we use the following complementaryvoid write(char API for writing c) bitstreamswrite to the standard speci!ed output:8-bit char publicvoid classwrite(char BinaryStdOut c, int r) write the r least signi!cant bits of the speci!ed char [similar methods for byte (8 bits); short (16 bits); int (32 bits); long and double (64 bits)] void write(boolean b) write the speci!ed bit void close() close the bitstream void write(char c) write the speci!ed 8-bit char API for static methods that write to a bitstream on standard output void write(char c, int r) write the r least signi!cant bits of the speci!ed char 8 [similar methods for byte (8 bits); short (16 bits); int (32 bits); long and double (64 bits)] void close() close the bitstream API for static methods that write to a bitstream on standard output Writing binary data Date representation. Different ways to represent 12/31/1999. A character stream (StdOut) StdOut.print(month + "/" + day + "/" + year); 00110001001100100010111100110111001100010010111100110001001110010011100100111001 1 2 / 3 1 / 1 9 9 9 80 bits Three ints (BinaryStdOut) BinaryStdOut.write(month); BinaryStdOut.write(day); BinaryStdOut.write(year); 000000000000000000000000000011000000000000000000000000000001111100000000000000000000011111001111 12 31 1999 96 bits Two chars and a short (BinaryStdOut) A 4-bit !eld, a 5-bit !eld, and a 12-bit !eld (BinaryStdOut) BinaryStdOut.write((char) month); BinaryStdOut.write(month, 4); BinaryStdOut.write((char) day); BinaryStdOut.write(day, 5); BinaryStdOut.write((short) year); BinaryStdOut.write(year, 12); 00001100000111110000011111001111 110011111011111001111000 12 31 1999 32 bits 12 31 1999 21 bits ( + 3 bits for byte alignment at close) Four ways to put a date onto standard output 9 628 CHAPTER 5 Q Strings to open a file with an edi- public class BinaryDump { tor or view it in the manner public static void bits(String[] args) you view text files (or just { run a program that uses int width = Integer.parseInt(args[0]); BinaryStdOut), you are int cnt; likely to see gibberish, de- for (cnt = 0; !BinaryStdIn.isEmpty(); cnt++) pending on the system you { use. BinaryStdIn allows if (cnt % width == 0) StdOut.println(); us to avoid such system de- if (BinaryStdIn.readBoolean()) StdOut.print("1"); pendencies by writing our else StdOut.print("0"); own programs to convert } bitstreams such that we can StdOut.println(cnt + " bits"); see them with our standard } tools. For example, the pro- } gram BinaryDump at left is BinaryStdIn Printing a bitstream on standard (character) output a client that prints out the bits from standard input, encoded with the characters 0 and 1. This program is useful for debug- ging when working with small inputs. We use a slightly more complicated version that Binary dumpsjust prints the count when the width argument is 0 (see !"#$%&'# (.(.)). The similar client HexDump groups the data into 8-bit bytes and prints each as two hexadecimal digits that each represent 4 bits. The client PictureDump displays the bits in a Picture. Q. HowYou to can examine download the HexDump contents and PictureDump of a bitstream? from the booksite. Typically, we use pip- ing and redirection at the command-line level when working with binary files: we can pipe the output of an encoder to BinaryDump, HexDump, or PictureDump, or redirect it to a file. Standard character stream Bitstream represented with hex digits % more abra.txt % java HexDump 4 < abra.txt ABRACADABRA! 41 42 52 41 43 41 44 41 Bitstream represented as 0 and 1 characters 42 52 41 21 12 bytes % java BinaryDump 16 < abra.txt 0100000101000010 Bitstream represented as pixels in a Picture 0101001001000001 % java PictureDump 16 6 < abra.txt 0100001101000001 0100010001000001 16-by-6 pixel 0100001001010010 window, magnified 0100000100100001 6.5 Q Data Compression 667 96 bits 96 bits Four ways to look at a bitstream ASCII encoding.