https://github.com/mubashirmalik/data-structures-go
Data structures implementation in Go. You are more than welcome to contribute to it.
https://github.com/mubashirmalik/data-structures-go
data-structures go golang hacktoberfest implementation-of-data-structures
Last synced: about 1 year ago
JSON representation
Data structures implementation in Go. You are more than welcome to contribute to it.
- Host: GitHub
- URL: https://github.com/mubashirmalik/data-structures-go
- Owner: MubashirMalik
- License: mit
- Created: 2022-06-21T07:06:22.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-13T20:32:46.000Z (over 1 year ago)
- Last Synced: 2024-09-14T10:14:46.790Z (over 1 year ago)
- Topics: data-structures, go, golang, hacktoberfest, implementation-of-data-structures
- Language: Go
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structures in Go
The most common data structures implemented in Golang for beginners, following best practices.
## What's been implemented:
* Stack
* Queue
* Linked List
* Binary Search Tree
* Hash Table
### Need implementation
* Doubly Linked List
* Circular Linked List
* AVL Tree
* Set
* Graph
## Solved Challenges using Data Structures
* Linked List
* Reverse List using Head Node
You are more than welcome to contribute to this repository. Please follow the naming conventions according to the golang standards.
These implementations are for demonstrative purposes only.