This is a simple archivator that can compress and decompress files.
- Compression method:
- Variable Length Coding (VLC) algorithm.
- Shannon-Fano algorithm.
- Clone the repository
- Build the project
go build./archivator pack -a <algorithm> <file>./archivator unpack -a <algorithm> <file>./archivator pack -a vlc Pride\ and\ Prejudice.txt./archivator unpack -a vlc Pride\ and\ Prejudice.vlcBook file compressed and correctly decompressed back. Decoded file is the same as the original file.
