Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eng618/go-eng
Creating a personal go package, to learn and to host personal notes and data structures.
https://github.com/eng618/go-eng
Last synced: 22 days ago
JSON representation
Creating a personal go package, to learn and to host personal notes and data structures.
- Host: GitHub
- URL: https://github.com/eng618/go-eng
- Owner: eng618
- License: mit
- Created: 2021-06-02T19:55:53.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-13T04:39:56.000Z (5 months ago)
- Last Synced: 2024-10-11T13:15:15.832Z (about 1 month ago)
- Language: Go
- Size: 285 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# go-eng
[![build-test-lint](https://github.com/eng618/go-eng/actions/workflows/ci.yml/badge.svg)](https://github.com/eng618/go-eng/actions/workflows/ci.yml)
[![release](https://github.com/eng618/go-eng/actions/workflows/release.yml/badge.svg)](https://github.com/eng618/go-eng/actions/workflows/release.yml)
[![Go Report Card](https://goreportcard.com/badge/github.com/eng618/go-eng)](https://goreportcard.com/report/github.com/eng618/go-eng)
[![codecov](https://codecov.io/gh/eng618/go-eng/branch/main/graph/badge.svg?token=L1D7JSRK98)](https://codecov.io/gh/eng618/go-eng)## Overview
This is a personal package I will be using to create various helper packages,
as I learn and explore the Go programing language. The main package of this
repo is simply to demonstrate the use of a subset of the contained packages.For full documentation visit the individual packages listed in the directories
section [pkg.go.dev/github.com/eng618/go-eng#section-directories](https://pkg.go.dev/github.com/eng618/go-eng#section-directories).## List of Packages
### Algorithms
- `github.com/eng618/go-eng/algo/search`
- binary search
- loop implementation
- recursion implementation
- linear search
- `github.com/eng618/go-eng/algo/sort`
- merge sort### Data Structures
- `github.com/eng618/go-eng/ds/list`
- linked list
- `github.com/eng618/go-eng/ds/queue`
- slice implementation
- linked list implementation
- `github.com/eng618/go-eng/ds/stack`
- slice implementation
- `github.com/eng618/go-eng/ds/hash`## Still to come
### Planned Algorithms
- Recursion
- Sort- [ ] Insertion
- [ ] Bubble
- [ ] Quick sort- Search
- [ ] Breadth-first search (BFS)
- [ ] Depth-first search (DFS)### Planned Data Structures
- [x] Queue
- [ ] Double linked list
- [ ] Binary Search Tree (BST)
- [ ] Graph