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

https://github.com/ronaldseoh/algorithmsunlocked

Go implementations of the algorithms from the book 'Algorithms Unlocked'
https://github.com/ronaldseoh/algorithmsunlocked

algorithms algorithms-unlocked compression-algorithm data-structures encryption-algorithms golang graphs sorting-algorithms

Last synced: 28 days ago
JSON representation

Go implementations of the algorithms from the book 'Algorithms Unlocked'

Awesome Lists containing this project

README

          

algorithmsunlocked
==================

This repository contains Go implementations of all the algorithms introduced in the book [Algorithms Unlocked](https://link.iamblogger.net/2) by Thomas H. Cormen. To test the algorithms in each chapter, fork/download this repository and execute

```bash
go test -v github.com/ronaldseoh/algorithmsunlocked/chapterXX
```

where `XX` is a chapter number. Note that Go 1.11+ is required to use [Go Modules](https://link.iamblogger.net/3) functionality. Please feel free to fork, create new issues, or make pull requests.

Reading Notes
-------------

Check out [`NOTES.md`](https://link.iamblogger.net/2yqn9) for my own summary of the book.

License
-------

`algorithmsunlocked` is licensed under MIT license. Please check `LICENSE`.