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

https://github.com/charithe/algorithms

Algorithms and data structures refresher
https://github.com/charithe/algorithms

Last synced: 13 days ago
JSON representation

Algorithms and data structures refresher

Awesome Lists containing this project

README

          

Algorithms and Data Structures
===============================

Implementations of common algorithms and data structures in Go.

**These implementations are for educational purposes only and are probably not suitable for production use.**

Data Structures
---------------

- Circular queue
- Binary tree (with Day-Stout-West balancing algorithm)
- Binary heap

Algorithms
----------

- Path finding
- Breadth-first
- Greedy breadth-first
- Djikstra
- A*