This program encodes/decodes Huffman compressed files. (c)ompress or (d)ecompress? c Input file name? hamlet.txt Character encodings: '\n'=00010 ' '=10 '!'=011001100 '"'=00000000110010100 '&'=00000000110010101 '''=0001111 '('=000110111111 ')'=000110111110 ','=011100 '-'=000110110 '.'=011110 '0'=00000000110010111 '1'=00000000110011 '4'=0000000011001000 '6'=0000000011001001 ':'=000000001101 ';'=011111101 '?'=110100110 'A'=01100100 'B'=000110100 'C'=0110010100 'D'=0001101011 'E'=000000000 'F'=0111111000 'G'=000000101 'H'=11010010 'I'=01111111 'J'=0000000011000 'K'=0110010111 'L'=000000100 'M'=000000110 'N'=0110010110 'O'=011001101 'P'=1101001111 'Q'=11010011101 'R'=0001101110 'S'=000000111 'T'=01100111 'U'=000000001111 'V'=000000001110 'W'=00000001 'Y'=0001101010 '['=0000000010 ']'=11010011100 'a'=0010 'b'=0111110 'c'=001110 'd'=00110 'e'=1100 'f'=001111 'g'=000001 'h'=11101 'i'=11100 'j'=01111110010 'k'=0001100 'l'=01101 'm'=110101 'n'=11110 'o'=0100 'p'=1101000 'q'=01111110011 'r'=11011 's'=11111 't'=0101 'u'=00001 'v'=0001110 'w'=011000 'x'=0110010101 'y'=011101 'z'=00011011110 EOF=00000000110010110 Output file name (blank for System.out)? hamlet.huf Compressing ... Saving character counts to hamlet.huf.counts ... Done. (631ms)