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

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.

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).