Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/morintd/algorithms-go
https://github.com/morintd/algorithms-go
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/morintd/algorithms-go
- Owner: morintd
- Created: 2024-06-15T22:47:28.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-07-06T12:05:48.000Z (6 months ago)
- Last Synced: 2024-07-06T13:27:17.699Z (6 months ago)
- Language: Go
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# algorithms-go
Implementation of multiple algorithms in Go. Partially based on [The Last Algorithms Course You'll Ever Need](https://frontendmasters.com/courses/algorithms/) (originally in TypeScript).
## Includes
- Base Case Pathfinding
- Binary Search List
- Binary Search Tree (BST)
- Bubble Sort
- Double Linked List
- Graph (Breadth First Search on Weighted Adjacency Matrix, Depth First Search on Weighted Adjacency List)
- Heap (MinHeap)
- Merge Sort
- Queue
- Quicksort
- Stack
- Tree (Breadth First Search, Traversal PreOrder/InOrder/PostOrder)
- Two Crystall Balls problem## Commands
```sh
$ make test
```