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
- Host: GitHub
- URL: https://github.com/iv4n-ga6l/Go-HuffmanCompresser
- Owner: iv4n-ga6l
- Created: 2024-04-25T06:36:16.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-12T10:03:36.000Z (6 months ago)
- Last Synced: 2025-03-26T11:47:45.870Z (about 1 month ago)
- Topics: go, golang, huffman-compression-algorithm
- Language: Go
- Homepage: https://codingchallenges.fyi/challenges/challenge-huffman
- Size: 56.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
````