Skip to content

Bupaheh/Huffman-Archiver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Huffman Archiver

This project contains an archiver that uses the Huffman algorithm.

Command line arguments:

-c
	compressing mode

-u
	decompressing mode

-f <FILE>, --file <FILE>
	input file

-o <FILE>, --output <FILE>
	output file

Output

Compressing mode output:

<decompressed data size>
<compressed data size>
<header size>

Decompressing mode output:

<compressed data size>
<decompressed data size>
<header size>

Examples

Compressing example:

./archiver -c -f data -o compressedData
18074
11845
518

Decompressing example:

./archiver -u -f compressedData -o data
11845
18074
518

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published