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

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

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