https://github.com/dids/go-huffman
An example implementation of the Huffman Coding algorithm written in Go.
https://github.com/dids/go-huffman
Last synced: about 1 year ago
JSON representation
An example implementation of the Huffman Coding algorithm written in Go.
- Host: GitHub
- URL: https://github.com/dids/go-huffman
- Owner: Dids
- License: mit
- Created: 2018-02-07T07:04:53.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-07T08:02:11.000Z (over 8 years ago)
- Last Synced: 2025-03-20T19:07:49.178Z (about 1 year ago)
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-huffman
> An example implementation of the Huffman Coding algorithm written in Go.
__WARNING: THIS IS A WORK IN PROGRESS__
## Development
Build:
```sh
go build *.go
```
Run:
```sh
go run *.go
```
> Detailed, platform-specific instructions on debugging with VSCode can be found [here](https://github.com/Microsoft/vscode-go/wiki/Debugging-Go-code-using-VS-Code).
**Note**: Install the _delve_ debugger manually (applies to macOS):
```sh
go get -u github.com/derekparker/delve/cmd/dlv
```
## License
See [LICENSE](LICENSE).