https://github.com/alfredoprograma/algorithms
Collection of algorithms and data structures written in Go programming language
https://github.com/alfredoprograma/algorithms
Last synced: 4 months ago
JSON representation
Collection of algorithms and data structures written in Go programming language
- Host: GitHub
- URL: https://github.com/alfredoprograma/algorithms
- Owner: AlfredoPrograma
- Created: 2025-03-20T19:58:51.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-31T17:32:26.000Z (11 months ago)
- Last Synced: 2025-09-14T22:27:04.889Z (10 months ago)
- Language: Go
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Al(GO)rithms
This repository is a collection of various algorithms implemented in the Go programming language in order to track my learnings about data structures and algorithms topics.
> [!NOTE]
> This repository is a work in progress, and more algorithms will be added over time!
## Algorithms list
### Searching
- [x] Binary search
### Sorting
- [x] Bubble sort
- [x] Selection sort
- [x] Quicksort
- [ ] Merge sort
### Graphs
- [x] Breadth-First search
- [ ] Dijkstra's
## Data structures list
- [x] Singly linked list
- [ ] Doubly linked list
- [ ] Queue
- [ ] Stack
- [ ] Binary tree