An open API service indexing awesome lists of open source software.

https://github.com/iv4n-ga6l/Go-HuffmanCompresser

Huffman compresser implementation in Go
https://github.com/iv4n-ga6l/Go-HuffmanCompresser

go golang huffman-compression-algorithm

Last synced: 9 days ago
JSON representation

Huffman compresser implementation in Go

Awesome Lists containing this project

README

        

Huffman compresser implementation in Go

### Compression (CLI Mode)
````
go run main.go -compress -input input.txt -output output.bin -password PASSWORD
````

### deCompression (CLI Mode)
````
go run main.go -decompress -input output.bin -output output.txt -password PASSWORD
````

### Web Mode
````
go run main.go --serve
````