Categorygithub.com/KoyamaSohei/huffman-coding
modulepackage
0.0.0-20200929184804-cb41906db8b6
Repository: https://github.com/koyamasohei/huffman-coding.git
Documentation: pkg.go.dev

# README

huffman-coding

huffman encoding / decoding tool

refer: https://en.wikipedia.org/wiki/Huffman_coding

Usage

$ go get github.com/KoyamaSohei/huffman-coding
$ echo "Hello, World" > hello.txt 
$ huffman-coding encode hello.txt hello 
$ ls
hello hello.json hello.txt 
$ huffman-coding decode hello 
Hello, World