Algorithm/Huffman version 0.02 ============================== SYNOPSIS use Algorithm::Huffman; my $huff = Algorithm::Huffman->new(\%char_counting); my $encode_hash = $huff->encode_hash; my $decode_hash = $huff->decode_hash; print "Look at the encoding bitstring of 'Hello': ", $huff->encode_bitstring("Hello"); print "The decoding of 110011001 is ", $huff->decode_bitstring("110011001"); INSTALLATION To install this module type the following: perl Makefile.PL make make test make install DEPENDENCIES This module requires these other modules and libraries: Heap Heap::Fibonacci Heap::Elem Tree::DAG_Node List::Util # Modules only for the test script Test::More Test::ManyParams Test::Exception Data::Dumper String::Random COPYRIGHT AND LICENCE Put the correct copyright and licence information here. Copyright (C) 2002 Janek Schleicher This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.