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
- Host: GitHub
- URL: https://github.com/charithe/algorithms
- Owner: charithe
- License: apache-2.0
- Created: 2016-10-23T18:52:12.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-15T22:01:10.000Z (about 9 years ago)
- Last Synced: 2024-06-21T09:59:13.987Z (over 1 year ago)
- Language: Go
- Size: 13.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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*