Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eduardgomezescandell/algo
Classical algortithms and data structures
https://github.com/eduardgomezescandell/algo
Last synced: 27 days ago
JSON representation
Classical algortithms and data structures
- Host: GitHub
- URL: https://github.com/eduardgomezescandell/algo
- Owner: EduardGomezEscandell
- License: mit
- Created: 2023-01-17T18:48:23.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-30T17:34:23.000Z (almost 2 years ago)
- Last Synced: 2024-11-07T10:53:30.368Z (3 months ago)
- Language: Go
- Size: 60.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Algorithms and Data Structures in Go
This repository contains various classical algorithms and data structures. They are all kept generic so you can
use them directly in your project.![tests](https://github.com/EduardGomezEscandell/algo/actions/workflows/test.yaml/badge.svg?branch=main)
[![Go Reference](https://pkg.go.dev/badge/github.com/EduardGomezEscandell/algo.svg)](https://pkg.go.dev/github.com/EduardGomezEscandell/algo)
[![Go Report Card](https://goreportcard.com/badge/EduardGomezEscandell/algo)](https://goreportcard.com/report/EduardGomezEscandell/algo)
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/EduardGomezEscandell/algo/blob/main/LICENSE)## Aim
The aim is to implement generic portable data structures and algorithms. The goal is not to have an intricate relationship between
them, but rather to let you use small parts of this module without forcing you to embrace it all.