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

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.

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.